.mulch-calculator-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mulch-calculator-container h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #34495e;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.results-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f4fc;
    border-radius: 4px;
}

.results-container h3 {
    margin-top: 0;
    color: #2c3e50;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d6eaf8;
}

.result-label {
    font-weight: bold;
    color: #34495e;
}

.result-value {
    color: #16a085;
}

.contact-form {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f7fd;
    border-radius: 4px;
}

.contact-form h3 {
    margin-top: 0;
    color: #2c3e50;
}

/* Admin styles */
.mulch-submissions-header {
    margin-bottom: 20px;
}

.wp-list-table th, .wp-list-table td {
    padding: 8px 10px;
}