/* style.css */
.radial-gradient-blue {
    background: radial-gradient(180% 50% at 50% 50%, #3B5F92 0%, #1D3557 100%);
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

.custom-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1D3557;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 99999;
    font-size: 14px;
}

.custom-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.custom-toast.error {
    background: #e74c3c;
}

.custom-toast.success {
    background: #2ecc71;
}

.custom-toast.info {
    background: #2d3748;
}