body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    color: #14171a;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.container[data-highlight="red"] {
    border:solid 2px #f04923;
}

.container[data-highlight="amber"] {
    border:solid 2px #ffbf00;
}

.container[data-highlight="green"] {
    border:solid 2px #00a86b;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

#logo {
    width: 600px;
    height: 250px;
    display: block;
    margin: 0 auto;
    padding: 25px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

.api-options {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.api-options label {
    margin-right: 10px;
}

#apiSelect[data-highlight="red"], #apiSelect option[data-highlight="red"] {
    background-color: #f04923;
}

#apiSelect[data-highlight="amber"], #apiSelect option[data-highlight="amber"] {
    background-color: #ffbf00;
}

#apiSelect[data-highlight="green"], #apiSelect option[data-highlight="green"] {
    background-color: #00a86b;
}

.dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 20px;
    text-align: center;
}

#result img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loading {
    color: #999999;
}

button.download {
    margin-top: 10px;
    background-color: #28a745;
}

button.download:hover {
    background-color: #218838;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #999999;
    font-size: 12px;
}