/* ===== Body styling ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 20px;
    color: #333;
}

/* ===== Title ===== */
h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

/* ===== Buttons ===== */

button{
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    font-size: 20px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 5px #d35445;
    transition: all 0.3s ease-in-out;
}

button:hover {
    background-color: #ff8576;
    transform: translateY(-3px);
}

button:active{
    transform: translateY(2px);
    box-shadow: 0 3px #d3544b;
}

button:disabled{
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

#results, #choiceresults, #fresults{
    margin-top: 20px;
    padding: 20px 15px;
    border-radius: 12px;
    min-width: 350px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #003049;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) ;
}



#fresults {
    font-size: 24px;
    font-weight: bold;
    margin-top: 25px;
    border: 2px solid #fff;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    color: #222;
    background-color: #fff;
}