.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgb(240, 240, 240);
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}
.btn:hover {
    background-color: #cccccc;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
}

#output_layers {
    background-color: #ffffff;
    padding: 10px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding-bottom: 40px;
    display: inline-block;
}

h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #34495e;
}

select, input[type="range"] {
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

input[type="range"] {
    padding: 0;
    height: 6px;
    accent-color: #3498db;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 25px;
}

button:hover {
    background-color: #2980b9;
}

.btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #2ecc71;
    color: white;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn:hover {
    background-color: #27ae60;
}

span {
    font-weight: 500;
    margin-left: 5px;
}

.top_row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
}

.farm_selection {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 400px;
    padding-bottom: 40px;
}

.info_panel {
    background-color: #ffffff;
    color: #34495e;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 300px;
    width: 300px;
    flex: 0 0 300px;
}

#info_rating_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 25px;
}

#info_rating_table th,
#info_rating_table td {
    padding: 8px 10px;
    border-bottom: 1px solid #ddd;
}

#info_rating_table th {
    text-align: left;
    color: #333;
}

#info_rating_table td:first-child {
    width: 80%;
}

#info_rating_table td:last-child {
    width: 20%;
    text-align: left;
    font-size: 16px;
    color: #f5b301; /* star color */
}

#info_rating_table tr:hover {
    background-color: #f7f7f7;
}

#info_rating_table th:last-child {
    text-align: right;
}

#rating_separator td {
    border-top: 2px solid #ddd;
}

#info_rating_table tr:nth-child(-n+3) td:last-child {
    color: #34495e;
}

.output_wrapper {
    overflow-x: auto;
    max-width: 100%;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

#toggle_adanced_settings_checkbox {
    margin-bottom: 25px;
    display: inline-block;
}