* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Deep-SKAI Color Scheme - Dark Theme (default) */
    --navy-900: #0f1729;
    --navy-800: #1a2538;
    --navy-700: #243447;
    --navy-600: #2e4256;
    --navy-500: #3d5a7a;

    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;

    --gold-600: #ca8a04;
    --gold-500: #eab308;
    --gold-400: #facc15;

    --bg-primary: #0a1020;
    --bg-secondary: rgba(15, 23, 41, 0.85);
    --bg-tertiary: rgba(26, 37, 56, 0.6);
    --bg-input: rgba(15, 23, 41, 0.7);
    --bg-card: rgba(30, 41, 59, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #f1f5f9;
    --text-tertiary: #cbd5e1;
    --text-muted: #94a3b8;

    --border-primary: rgba(20, 184, 166, 0.35);
    --border-secondary: rgba(20, 184, 166, 0.2);
    --border-accent: rgba(234, 179, 8, 0.3);

    /* Deep-SKAI Accent Colors */
    --accent-teal: #14b8a6;
    --accent-teal-light: #2dd4bf;
    --accent-teal-dark: #0d9488;
    --accent-gold: #eab308;
    --accent-gold-light: #facc15;
    --accent-gold-dark: #ca8a04;
    --accent-navy: #3d5a7a;
    --accent-green: #10b981;
    --accent-red: #ef4444;

    --glow-teal: rgba(20, 184, 166, 0.15);
    --glow-gold: rgba(234, 179, 8, 0.1);
    --glow-green: rgba(16, 185, 129, 0.15);
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: rgba(255, 255, 255, 0.9);
    --bg-tertiary: rgba(241, 245, 249, 0.8);
    --bg-input: rgba(255, 255, 255, 0.95);
    --bg-card: rgba(248, 250, 252, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-tertiary: #334155;
    --text-muted: #64748b;
    --border-primary: rgba(20, 184, 166, 0.5);
    --border-secondary: rgba(20, 184, 166, 0.3);
    --border-accent: rgba(202, 138, 4, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    font-size: 16px;
    line-height: 1.6;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-teal-light) 0%, var(--accent-teal) 100%);
    border-radius: 10px;
    border: 2px solid var(--navy-900);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-teal) 0%, var(--accent-teal-dark) 100%);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal-light) var(--navy-900);
}

#root {
    max-width: 1400px;
    margin: 0 auto;
}

.app-container {
    background: var(--bg-secondary);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid var(--border-secondary);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.app-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(234, 179, 8, 0.15) 100%);
    border-bottom: 1px solid var(--border-primary);
    color: white;
    padding: 40px 40px;
    text-align: center;
    position: relative;
}

.app-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(20, 184, 166, 0.2), transparent);
    pointer-events: none;
}

.app-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent-teal-light), var(--accent-teal), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.app-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    color: var(--text-secondary);
    position: relative;
    font-weight: 500;
}

.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-input);
    transform: translateY(-2px);
}

.app-body {
    padding: 30px 40px;
}

.section {
    background: var(--bg-tertiary);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border-secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 2000px; }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.section-header h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-header .icon {
    font-size: 1.8rem;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-weight: 600;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group input,
.input-group select {
    padding: 10px 14px;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-input);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px var(--glow-teal),
                inset 0 0 20px rgba(20, 184, 166, 0.1);
}

.input-group input:disabled {
    background: rgba(10, 14, 26, 0.4);
    cursor: not-allowed;
    opacity: 0.5;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: help;
    transition: all 0.3s ease;
}

.help-icon:hover {
    background: var(--accent-teal-light);
    transform: scale(1.1);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    border: 1px solid var(--border-primary);
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-teal-dark), var(--accent-teal));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-green), #059669);
    color: white;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-red), #dc2626);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: var(--bg-card);
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
    font-size: 1.05rem;
}

.btn-outline:hover {
    background: var(--accent-teal);
    color: white;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.use-case-item {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.use-case-item:hover {
    border-color: var(--accent-teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.use-case-header h3 {
    font-size: 1.2rem;
    color: #ffffff;
}

.use-case-actions {
    display: flex;
    gap: 10px;
}

.use-case-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal {
    background: rgba(15, 23, 41, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 40px var(--glow-teal);
    border: 1px solid var(--border-primary);
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.modal-header h2 {
    font-size: 1.7rem;
    color: var(--text-primary);
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    padding: 5px;
    line-height: 1;
    transition: all 0.2s;
}

.close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--border-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    text-align: center;
}

.result-card.positive {
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.result-card.negative {
    border-color: var(--accent-red);
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.result-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.result-value.positive {
    color: var(--accent-green);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.result-value.negative {
    color: var(--accent-red);
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.chart-container {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.preset-selector {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.preset-btn {
    padding: 14px 28px;
    border: 2px solid var(--border-primary);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-btn.active {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    border-color: var(--accent-teal);
    box-shadow: 0 0 20px var(--glow-teal);
}

.preset-btn:hover:not(.active) {
    border-color: var(--accent-teal);
    color: var(--accent-teal-light);
    box-shadow: 0 0 15px var(--glow-teal);
}

.export-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.summary-text {
    background: rgba(20, 184, 166, 0.08);
    backdrop-filter: blur(8px);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.math-explanation {
    background: rgba(26, 34, 54, 0.4);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    margin: 10px 0;
}

.math-explanation .formula {
    font-family: 'Courier New', monospace;
    background: rgba(10, 14, 26, 0.6);
    color: #e2e8f0;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
    font-size: 0.95rem;
    overflow-x: auto;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.math-explanation .interpretation {
    color: #cbd5e1;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-secondary);
}

thead {
    background: rgba(26, 34, 54, 0.6);
}

th {
    padding: 14px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-primary);
}

td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-secondary);
    color: var(--text-secondary);
    font-size: 1rem;
}

tr:hover {
    background: rgba(20, 184, 166, 0.08);
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* Wizard Layout */
.wizard-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.wizard-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wizard-step {
    background: var(--bg-tertiary);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

.wizard-step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wizard-step-title {
    flex: 1;
}

.wizard-step-title h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.wizard-step-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Right Sidebar - Running Tallies */
.running-tallies-sidebar {
    position: sticky;
    top: 20px;
    background: var(--bg-tertiary);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 25px;
    border: 2px solid var(--border-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.running-tallies-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.running-tallies-header h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.running-tally-item {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-secondary);
}

.running-tally-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-weight: 600;
}

.running-tally-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.running-tally-value.positive {
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.running-tally-value.negative {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.view-details-link {
    display: block;
    margin-top: 20px;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.view-details-link:hover {
    background: linear-gradient(135deg, var(--accent-teal-dark), var(--accent-teal));
    transform: translateY(-2px);
}

/* Use Case Draggable List */
.use-case-draggable {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.use-case-drag-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 15px;
    cursor: move;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.use-case-drag-item:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.use-case-drag-item.dragging {
    opacity: 0.5;
}

.drag-handle {
    color: var(--text-muted);
    cursor: grab;
    font-size: 1.2rem;
}

.drag-handle:active {
    cursor: grabbing;
}

.use-case-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-teal);
}

.use-case-info {
    flex: 1;
}

.use-case-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.use-case-impact-range {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Conservative-Aggressive Slider */
.impact-slider {
    width: 100%;
    margin-top: 10px;
}

.impact-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(90deg, #eab308 0%, #14b8a6 100%);
    outline: none;
    -webkit-appearance: none;
}

.impact-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-teal);
    cursor: pointer;
}

.impact-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-teal);
    cursor: pointer;
    border: none;
}

.impact-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Service Line Chips */
.service-line-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-line-chip {
    padding: 10px 16px;
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.service-line-chip.selected {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(45, 212, 191, 0.25));
    border-color: var(--accent-teal);
    color: var(--accent-teal-dark);
    font-weight: 700;
}

.service-line-chip:hover:not(.selected) {
    border-color: var(--accent-teal);
}

/* Hospital Multi-Entry */
.hospital-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hospital-item {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.hospital-item input {
    padding: 8px 12px;
    border: 1px solid var(--border-primary);
    border-radius: 6px;
    background: var(--bg-input);
    color: var(--text-primary);
}

.hospital-remove-btn {
    padding: 6px 12px;
    background: var(--accent-red);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.hospital-remove-btn:hover {
    background: #dc2626;
}

@media (max-width: 1200px) {
    .wizard-container {
        grid-template-columns: 1fr;
    }

    .running-tallies-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .app-header {
        padding: 20px;
    }

    .app-header h1 {
        font-size: 1.8rem;
    }

    .app-body {
        padding: 20px;
    }

    .section {
        padding: 15px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .hospital-item {
        grid-template-columns: 1fr;
    }
}
