/* Custom Navbar Styling */
.navbar-main {
    background-color: #ffffff !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
    border-radius: 0.75rem !important;
    margin-bottom: 20px;
}

/* Breadcrumb styling */
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #2c3e50 !important;
    opacity: 1 !important;
}

/* User avatar styling */
.user-avatar {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #7b1fa2 !important; /* Match the purple primary from material-dashboard */
}

/* Sign out button styling */
.btn-outline-danger {
    border-color: #f44336;
    color: #f44336;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #f44336;
    color: #ffffff;
}

/* Fix spacing for mobile view */
@media (max-width: 767.98px) {
    .navbar-main .container-fluid {
        padding: 0.75rem;
    }
    
    .user-avatar {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Hide text, show only avatar and logout icon on smaller screens */
    .d-none.d-md-inline {
        display: none !important;
    }
    
    /* Keep some spacing between elements */
    .ms-3 {
        margin-left: 0.5rem !important;
    }
    
    .me-2 {
        margin-right: 0.5rem !important;
    }
}

/* Make sure navbar items are properly aligned */
.navbar-main .container-fluid {
    justify-content: space-between;
    align-items: center;
}

/* Ensure the avatar and name are visible */
.user-avatar, .d-none.d-md-inline {
    display: flex !important;
} 