﻿.toastify-base {
    background: #fff !important;
    background-image: none !important;
    color: #2c2c2c !important;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 20px !important;
    border: 1px solid #ddd !important;
    padding: 24px 28px !important;
    max-width: 480px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.toastify-center {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
}

.toastify-success {
    border-left: 6px solid #4caf50 !important;
}

.toastify-error {
    border-left: 6px solid #f44336 !important;
}

.toastify-info {
    border-left: 6px solid #2196f3 !important;
}

.icon-circle {
    font-size: 28px;
    margin-bottom: 12px;
}

.toast-text {
    font-size: 16px;
    margin-bottom: 12px;
}

.toast-buttons {
    margin-top: 8px;
}

.btn-toast {
    background-color: #2196f3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

    .btn-toast:hover {
        background-color: #1976d2;
    }
