.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin: 0 10px;
}
h2 {
    color: #333;
    margin-bottom: 20px;
}

.input-box, .result-box {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

label, input, select, button {
    display: block;
    width: 97%;
    margin: 10px 0;
}

input, select, button {
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
}

button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border: none;
}

button:hover {
    background-color: #FA346E;
}

p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 15px;
    }

    input, select, button {
        font-size: 14px;
        padding: 8px;
    }

    p {
        font-size: 16px;
    }
}
