body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#currencySelection, #amountInput, #result {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* для радио-кнопок и меток */
input[type="radio"] {
    margin: 10px;
}

label {
    font-size: 16px;
    margin-left: 5px;
    color: #555;
}

/* для поля ввода */
#amountInput input {
    padding: 8px;
    font-size: 16px;
    width: 80%;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
}

/* для блока с результатом */
#result {
    margin-top: 20px;
}

#result p {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

/* для подсветки при выборе валюты */
input[type="radio"]:checked + label {
    color: #007BFF;
    font-weight: bold;
}

/* Стили для фокуса на поле ввода */
input[type="number"]:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
