body {
    font-family: Arial, sans-serif;
    padding: 20px;
    
}
.header {
    background-color: #0dcaf0;
    height: 10px;
    width: 100%;
    margin-bottom: 20px;
}
.resource-section {
    margin-bottom: 30px;
}
.resource-title {
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.slider-container {
    margin-bottom: 15px;
}
.form-range {
    width: 100%;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 14px;
}
.calculator-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    max-width: 100%;
}
.calculator-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.control-button {
    background-color: #0dcaf0;
    color: white;
    width: 36px;
    height: 36px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.resource-value {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f8f9fa;
    font-weight: bold;
    padding: 5px;
    font-size: 16px;
}
.resource-label {
    font-weight: bold;
    margin-left: 8px;
    white-space: nowrap;
}
.total-price {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
.currency-conversion {
    margin-top: 15px;
    font-size: 14px;
}
.submit-button {
    background-color: #0dcaf0;
    border: none;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-weight: bold;
    color: white;
}
.exchange-button {
    background-color: #0dcaf0;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    color: white;
    border-radius: 5px;
}
hr {
    margin: 20px 0;
}