/* User profile styling in navbar */
.user-profile-mini {
    display: flex;
    align-items: center;
}

.profile-image-container {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #495057;
    font-weight: bold;
    font-size: 12px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    margin-right: 10px;
    color: #fff;
}

.dropdown-toggle::after {
    margin-left: 5px;
}

.dropdown-menu {
    min-width: 10rem;
    margin-top: 0.5rem;
}

/* Login status indicator */
.login-status-indicator {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
}

.login-status-indicator i {
    font-size: 0.6rem;
    margin-right: 5px;
}

.login-status-text {
    display: inline-block;
}

/* Improved logout button */
.logout-btn {
    color: #dc3545;
    font-weight: bold;
}

.logout-btn:hover {
    background-color: #dc3545;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .login-status-text {
        display: none;
    }
}

/* Premium user styling */
.premium-user {
    border: 2px solid #ffc107;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    margin-left: 0.5rem;
}

.text-warning {
    color: #ffc107 !important;
}

/* Responsive adjustments for subscription status */
@media (max-width: 767.98px) {
    .badge-warning {
        display: none;
    }
}
