.apsc_crop_calculator {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.apsc_crop_form {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.apsc_crop_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.apsc_crop_field label {
    font-weight: 600;
    color: #333;
}

.apsc_crop_field input,
.apsc_crop_field select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.apsc_crop_field input:focus,
.apsc_crop_field select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.apsc_crop_button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.apsc_crop_button:hover {
    background: #005177;
}

.apsc_crop_results {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    display: none;
}

.apsc_crop_result_field {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.apsc_crop_result_field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.apsc_crop_label {
    color: #333;
    margin-bottom: 5px;
}

.apsc_crop_value {
    font-weight: 600;
    color: #0073aa;
}

.apsc_crop_explanation {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
} 