/* ========== Root Variables ========== */
:root {
    --yellow: #ffff80;
    --blue: #245eeb;
    --white: #ffffff;
    --black: #222222;
    --gray: #f5f5f5;
}

/* ========== Base Styles ========== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--black);
    background-color: var(--yellow);
    height: 100%;
    width: 100%;
}

/* ========== Shared Button Style ========== */
button,
.cta-button {
    background-color: var(--blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button {
    display: inline-block;
    border-radius: 2rem;
    text-align: center;
}
/*
button:hover,
.cta-button:hover {
    background-color: #1c47b5;
}
*/

/* ========== Toast Notifications ========== */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ff4c4c;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    font-weight: bold;
    z-index: 999;
    animation: slide-in 0.4s ease-out, fade-out 0.5s ease-in 3.5s forwards;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-out {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}