html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
}

.cell-content {
    display: flex;
    align-items: center;
}

.cell-svg {
    height: 1.5rem; /* or whatever height you desire */
    width: auto; /* maintains the aspect ratio of the SVG */
}

.cell-text {
    margin-left: 1rem;
    margin-right: 1rem;
}

table {
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

    table thead tr {
        height: 2rem;
    }

    table tbody tr {
        height: 2.5rem;
    }

.table td {
    text-align: center; /* Horizontally center the content */
    vertical-align: middle; /* Vertically center the content */
    white-space: nowrap; /* Ensures content stays in the same row */
}

tbody tr:nth-child(odd) {
    background-color: #f5f5f5;
}

tbody tr:hover {
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    z-index: 1;
    position: relative; 
}

    .hover-effect:hover {
        color: #28BADE !important;
    }