|
|
|
header h1 { |
|
font-size: 2rem; |
|
font-weight: bold; |
|
color: #002d63; |
|
} |
|
|
|
|
|
.currency-selectors { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
gap: 10px; |
|
} |
|
|
|
span { |
|
font-size: 16px; |
|
font-weight: bold; |
|
color: #555; |
|
} |
|
|
|
|
|
button { |
|
padding: 15px; |
|
background-color: #0056b3; |
|
color: #ffffff; |
|
border: none; |
|
border-radius: 10px; |
|
font-size: 18px; |
|
font-weight: bold; |
|
cursor: pointer; |
|
transition: all 0.3s ease; |
|
} |
|
|
|
button:hover { |
|
background-color: #003d80; |
|
} |
|
|
|
|
|
#result { |
|
font-size: 18px; |
|
font-weight: bold; |
|
color: #0056b3; |
|
background-color: #eef6ff; |
|
border: 1px solid #d4eaff; |
|
} |
|
|