﻿.notification-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 70px;
    width: 70px;
    justify-content: center;
}

.notification-btn {
    height: 100%;
    width: 100%;
    font-size: 1.5rem;
    color: var(--primary-color);
    border-radius: inherit !important;
}

    .notification-btn:focus {
        background: inherit !important;
    }

.notification-badge-wrapper {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--important-color);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    height: 25px;
    width: 25px;
    justify-content: center;
    font-weight: bold;
}

.notification-badge {
    align-content: center;
}

.notification-popup {
    position: absolute;
    top: 120%;
    right: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background-color: white;
    border-radius: 8px;
    z-index: 9999;
    border: 1px solid #ccc;
}

.notification-item {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
    padding: 1rem;
}

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

.notification-replacement {
    color: #0B2447;
    font-weight: bold;
}

.notification-default {
    color: #333;
}

.notification-empty {
    padding: 1rem;
    text-align: center;
    color: #888;
}

.unread-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--important-color);
    border-radius: 50%;
    margin-left: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
}
