.autoloan-simple-container {
    font-family: Arial, sans-serif;
    /*background-color: #f0f2f5;*/
    margin: 0;
    /*padding: 20px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;*/
}

.autoloan-simple-container h1 {
    font-size: 28px;
    margin: 0;
}

.autoloan-simple-description {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

.autoloan-simple-content {
    /*display: flex;
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;*/
}

.autoloan-simple-input-section {
    width: 500px;
    padding: 10px;
    background-color: #FFF;
    border-right: 0px solid #eaeef2;
}

.autoloan-simple-result-section {
    width: 500px;
    padding: 10px;
}

.autoloan-simple-form-group {
    margin-bottom: 20px;
}

.autoloan-simple-form-group label {
    /*display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;*/
}

.autoloan-simple-form-group input[type="number"] {
    width: 160px;
    padding: 10px;
    border: 1px solid #dce1e6;
    border-radius: 4px;
    font-size: 16px;
}

.autoloan-simple-form-group input[type="number"]:focus {
    outline: none;
    border-color: #3498db;
}

.autoloan-simple-range-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 40px;
}

.autoloan-simple-range-value {
    margin-left: 10px;
    font-weight: bold;
    color: crimson;
    width: 120px;
}

.autoloan-simple-form-group input[type="range"] {
    /*width: 300px;
    height: 6px;
    border-radius: 5px;
    */
    background: turquoise;
    outline: none;
}

.autoloan-simple-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.autoloan-simple-buttons button {
    /*flex: 1;*/
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

#autoloan-simple-calculate {
    background-color: #3498db;
    color: white;
}

#autoloan-simple-calculate:hover {
    background-color: #2980b9;
}

#autoloan-simple-reset {
    background-color: #e74c3c;
    color: white;
}

#autoloan-simple-reset:hover {
    background-color: #c0392b;
}

.autoloan-simple-result-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.autoloan-simple-result-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.autoloan-simple-result-value {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.autoloan-simple-result-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.autoloan-simple-detail-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.autoloan-simple-detail-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.autoloan-simple-detail-value {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.autoloan-simple-payment-schedule {
    margin-top: 30px;
}

.autoloan-simple-payment-schedule table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.autoloan-simple-payment-schedule th, 
.autoloan-simple-payment-schedule td {
    padding: 10px 15px;
    text-align: left;
    border-bottom: 1px solid #eaeef2;
}

.autoloan-simple-payment-schedule th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}

.autoloan-simple-payment-schedule tr:hover {
    background-color: #f5f7fa;
}