/**
 * Customer Support Portal - Custom Styles
 */

/* Navbar active state */
.layout-navbar .nav-item.active .nav-link {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

/* Ticket table row hover */
.card .table tbody tr {
    transition: background-color 0.15s;
}

/* Badge text transform */
.badge {
    text-transform: capitalize;
}

/* Auth pages - portal branding */
.authentication-wrapper .app-brand-text {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

/* Responsive adjustments for horizontal nav */
@media (max-width: 1199.98px) {
    .layout-navbar .navbar-nav {
        flex-direction: column;
        padding: 0.5rem 0;
    }
    .layout-navbar .navbar-nav .nav-item {
        width: 100%;
    }
    .layout-navbar .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
}

/* Avatar initial sizing fix */
.avatar-initial {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Footer spacing */
.content-footer {
    margin-top: auto;
}

/* Ensure content fills height */
.layout-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
