/**
 * Professional Hydraulic Design Platform - Engineering Styles
 * Professional engineering tables, results display, and technical components
 */

/* Results Table Components */
.results-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table td {
    padding: 0.75rem 1rem;
    border: none;
    border-bottom: 1px solid #e9ecef;
}