.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #6b7280;
    position: relative;
    display: flex;
    align-items: center;
}

.tab.active {
    color: #1047eb;
    font-weight: 500;
    .badge {
        color: #1047eb;
        background-color: #4169e133;
    }
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #1047eb;
}

.badge {
    background-color: #e5e7eb;
    color: #6b7280;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0.5rem;
}
.visit-head {
    border: 2px solid #e5e7eb; 
    border-radius: 10px; 
    padding: 30px;
    font-size: 22px;
    font-weight: 400;
}
.visit-tab-h {
    width: 100%;    
    border-bottom: 1px solid #e5e7eb;
}
.bordered-attributes p {
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}
.text-white {
    color: white;
}
#navbar-content {
    transition: max-height 0.3s ease-in-out;
}

#navbar-content.open {
max-height: 500px;
}

@media (min-width: 768px) {
    .navbar-toggler-btn {
    display: none !important;
    }
}

@media (max-width: 500px) {
    .badge {
        padding: 3px !important
    }
    .small-tab-visit {
        font-size: 16px;
        padding: 6px;
    }
    .pagy {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }
    .shadow-bottom-mobile {
        box-shadow: 0 0px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 5px -1px rgba(0, 0, 0, 0.06);
    }
}
@media (max-width: 380px) {
    .small-tab-visit {
        font-size: 12px;
        padding: 4px;
    }
}
@media (min-width: 1200px) {
  .max-w-sch {
    max-width: 50%
  }
}
.fit-content-custom {
    width: fit-content;
}