.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    text-decoration: none;
    color: inherit;
}

.navbar-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-right: 12px;
}

.brand-text {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.notification-bell {
    position: relative;
    margin-left: 20px;  /* Space from the menu */
}

.bell-icon {
    color: #666;
    font-size: 1.2em;
    transition: color 0.3s;
}

.bell-icon:hover {
    color: #333;
}

.bell-icon.has-notifications {
    color: #f39c12;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    min-width: 18px;
    text-align: center;
}

.notifications-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.notifications-header h6 {
    margin: 0;
    font-weight: 600;
}

.notification-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.clear-all {
    font-size: 0.8em;
    color: #e74c3c;
    text-decoration: none;
}

.clear-all:hover {
    color: #c0392b;
    text-decoration: none;
}

.view-all {
    font-size: 0.8em;
    color: #2980b9;
    text-decoration: none;
}

.notifications-list {
    padding: 8px 0;
}

.notification-item {
    padding: 8px 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item.unread {
    background-color: #e8f4fd;
}

.notification-item .title {
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: 4px;
}

.notification-item .message {
    font-size: 0.8em;
    color: #666;
}

.notification-item .time {
    font-size: 0.7em;
    color: #999;
    margin-top: 4px;
}

.show {
    display: block;
}

/* Statistics Menu Icons */
.dropdown-content a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.dropdown-content a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-content a:hover i {
    color: #3498db;
}
