/* inbox-notification */
.inbox-icon-btn {
    border: 1px solid #000000; /* white border, change as needed */
    border-radius: 4px;        /* slight rounding, optional */
    padding: 2px 8px;
    background-color: transparent;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inbox-icon-btn:hover {
    background-color: #c0c0c0
}

/* Notification Dropdown */
.notification-dropdown {
    width: 350px;
    max-height: 400px;
    overflow-y: auto;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.notification-dropdown .dropdown-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 16px;
    font-weight: 600;
}

.notification-dropdown .dropdown-footer {
    background-color: #f8f9fa;
    padding: 12px 16px;
    border-top: 1px solid #dee2e6;
}

/* Notification Items */
.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

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

.notification-item.unread {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.notification-item.read {
    background-color: #fff;
    opacity: 0.8;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.notification-time {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    margin-left: 8px;
}

.notification-body {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 8px;
}

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

.notification-type {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-priority {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

/* Notification Type Colors */
.type-announcement {
    background-color: #e3f2fd;
    color: #1976d2;
}

.type-document {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.type-complaint {
    background-color: #fff3e0;
    color: #f57c00;
}

.type-gamification {
    background-color: #e8f5e8;
    color: #388e3c;
}

.type-forum {
    background-color: #fce4ec;
    color: #c2185b;
}

.type-system {
    background-color: #ffebee;
    color: #d32f2f;
}

/* Priority Colors */
.priority-high {
    background-color: #ffebee;
    color: #d32f2f;
}

.priority-medium {
    background-color: #fff3e0;
    color: #f57c00;
}

.priority-low {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    transition: all 0.3s ease;
}

.notification-bell:hover {
    transform: scale(1.1);
}

.notification-bell .badge {
    font-size: 10px;
    padding: 2px 6px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Stats */
.stat-item {
    text-align: center;
    padding: 12px;
}

.stat-item i {
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Icons */
.notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon-announcement {
    background-color: #e3f2fd;
    color: #1976d2;
}

.icon-document {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.icon-complaint {
    background-color: #fff3e0;
    color: #f57c00;
}

.icon-gamification {
    background-color: #e8f5e8;
    color: #388e3c;
}

.icon-forum {
    background-color: #fce4ec;
    color: #c2185b;
}

.icon-system {
    background-color: #ffebee;
    color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-dropdown {
        width: 280px;
    }
    
    .notification-item {
        padding: 10px 12px;
    }
    
    .notification-title {
        font-size: 13px;
    }
    
    .notification-body {
        font-size: 12px;
    }
}

/* Custom Scrollbar */
.notification-dropdown::-webkit-scrollbar {
    width: 4px;
}

.notification-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-dropdown::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.notification-dropdown::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Animation for new notifications */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-item.new {
    animation: slideIn 0.3s ease-out;
}

/* Empty state */
.notification-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
}

.notification-empty h6 {
    margin-bottom: 8px;
    color: #999;
}

.notification-empty p {
    font-size: 14px;
    color: #aaa;
}