/**
 * Acres Per Hour Calculator Styles
 * Main colors:
 * - Call to actions: #000000 (black)
 * - Background: #ffffff (white)
 */

/* Container Styles */
.aph-calculator-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.aph-calculator-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form Styles */
.aph-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aph-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.aph-form-group label {
    font-weight: 600;
    color: #333;
}

.aph-form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.aph-form-group input:focus {
    border-color: #000000;
    outline: none;
}

/* Button Styles */
.aph-calculate-button {
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.aph-calculate-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.aph-calculate-button:active {
    transform: translateY(0);
}

/* Results Styles */
.aph-results {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #000000;
}

.aph-results h3 {
    margin-top: 0;
    color: #333;
}

.aph-results p {
    margin-bottom: 0;
    font-size: 16px;
}

#aph-result-value {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .aph-calculator-container {
        max-width: 100%;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .aph-form-group label {
        font-size: 14px;
    }
    
    .aph-form-group input {
        padding: 8px;
        font-size: 14px;
    }
    
    .aph-calculate-button {
        padding: 10px 15px;
        font-size: 14px;
    }
} 