body{
    color:aliceblue;
    background-color: rgb(50, 0100, 133);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:20px;
    height:100vh;
    overflow: hidden;
    position:relative;
    font-family: 'Arial', sans-serif;
}
.title{
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid aliceblue;
    position:absolute;
    top:0;
    z-index:1;
}
.inputs,.results{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width:100%;
    margin-top:20px;
}
.results p{
    display:inline;
    font-size: 24px;
}
.date{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    font-size: 24px;
    width: 80%;
    min-width: 150px;
}
#date-input{
    padding: 10px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    background-color: rgb(100, 100, 133);
    color: aliceblue;
    text-align: center;
    cursor: pointer;
    outline: none;
}
#calculate-age-btn{
    padding: 10px 20px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    background-color: rgb(100, 100, 133);
    color: aliceblue;
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover{
        background-color: rgb(80, 80, 113);
    }
    &:disabled{
        background-color: grey;
        cursor: not-allowed;
    }
}
#invalid-date-msg{
    color: #ff3333;
    padding: 0;
    margin-top: -10pxx;
    display:block;
    font-size: 18px;
}
#calculate-again-btn{
    padding: 10px 20px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    background-color: rgb(100, 100, 133);
    color: aliceblue;
    cursor: pointer;
    transition: all 0.3s ease;
}
#calculate-again-btn:hover{
    background-color: rgb(80, 80, 113);
}