/* Hospital Comparison Layout - Fresh Start */
.hospital-comparison-container {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    width: 100% !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 0 1rem 0 0 !important;
}

.hospital-comparison-tables {
    flex: 0 0 calc(50% - 0.5rem) !important;
    width: calc(50% - 0.5rem) !important;
    max-width: calc(50% - 0.5rem) !important;

    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    margin: 0 !important;
}

/* Standalone tables component - takes full width */
.hospital-comparison-tables-standalone {
    flex: 1 1 auto !important;
    width: calc(100% - 0.5rem) !important;
    max-width: calc(100% - 0.5rem) !important;
    padding: 0.5rem;
    margin: 0 0.5rem 0 0 !important;
}

.hospital-comparison-summary {
    flex: 0 0 calc(50% - 0.5rem) !important;
    width: calc(50% - 0.5rem) !important;
    max-width: calc(50% - 0.5rem) !important;

    min-height: 400px !important;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    margin: 0 !important;
}


/* Table styling is now handled by original Tailwind classes */

/* Responsive - stack when viewport gets narrow */
@media (max-width: 1250px) {
    .hospital-comparison-container {
        flex-direction: column !important;
    }
    
    .hospital-comparison-tables,
    .hospital-comparison-summary {
        flex: 1 1 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

