﻿.toastify {
    cursor: default;
    pointer-events: auto;
}

.toastify.toast-custom {
    background: none;
    padding: 0;
    box-shadow: none;
    z-index: 99999;
}

.toast-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 16px 18px;
    min-width: 420px;
    max-width: 520px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.toast-icon {
    color: #2563eb;
    font-size: 18px;
    line-height: 1;
    margin-top: 4px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 15px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
}

.toast-close:hover {
    color: #111827;
}