/* Custom Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Allow clicks through the container area */
}

.notification {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold border */
    border-left: 4px solid var(--gold);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    font-family: var(--font-main);
}

.notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 1.2rem;
    color: var(--gold);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--white);
}

.notification-message {
    font-size: 0.85rem;
    color: var(--grey-light);
}

.notification-close {
    cursor: pointer;
    color: var(--grey-mid);
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--white);
}

/* Success Variant */
.notification.success {
    border-left-color: #2ecc71;
}

.notification.success .notification-icon {
    color: #2ecc71;
}

/* Error Variant */
.notification.error {
    border-left-color: #e74c3c;
}

.notification.error .notification-icon {
    color: #e74c3c;
}