/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #007BFF;
    outline: none;
}

input[disabled] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

#phrases-container {
    margin-top: 20px;
}

button,
select {
    padding: 10px;
    font-size: 1em;
    margin: 10px 5px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover,
select:hover {
    background-color: #0056b3;
}

button:disabled,
select:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

p {
    font-size: 1.2em;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    button,
    select {
        width: 100%;
        margin: 5px 0;
    }
}
