/* Gravel Calculator Specific Styles */

/* Action Button */
.action-button {
    width: 100%;
    padding: 8px 16px;
    background: #003049;
    border: 1px solid #003049;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.action-button:hover {
    background: #00436b;
    border-color: #00436b;
}

/* Project Details Grid - Single Column */
.project-details-grid {
    grid-template-columns: 1fr;
}

/* Results note styling */
.results-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* Total cost highlight */
.total-cost {
    font-weight: 700;
    color: #059669;
}

/* Results total section */
.results-total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-results-border);
}
