/* NOTIFICATION */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--card-bg);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    color: var(--text-main);
    font-size: 14px;
    z-index: 10001;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
