/* Notificatie badge styling */
.profile-image {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #f44336;
    color: white;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    border-radius: 8px;
    padding: 1px 4px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.notification-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f44336;
    border-radius: 50%;
    margin-right: 5px;
}

/* Notificatie lijst styling */
.notifications-container {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    position: relative;
    transition: background-color 0.2s ease;
}

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

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

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

.notification-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.notification-item p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.notification-time {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.notification-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.notification-actions {
    position: relative;
    z-index: 2;
    text-align: right;
    margin-top: 8px;
}

.notification-actions button {
    background: none;
    border: none;
    font-size: 12px;
    color: #007bff;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
}

.notification-actions button:hover {
    text-decoration: underline;
}

.notification-empty {
    text-align: center;
    padding: 30px 15px;
    color: #999;
}

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