/* ===== HOSPITAL PAGE STYLES ===== */

.hospital-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Health Status Card */
.health-status-card {
    display: flex;
    align-items: center;
    padding: var(--spacing-lg);
    gap: var(--spacing-xl);
}

.health-visual {
    flex-shrink: 0;
}

.health-ring {
    width: 100px;
    height: 100px;
    position: relative;
}

.health-ring svg {
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: var(--success);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.health-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.health-num {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--success);
}

.health-label {
    font-size: 10px;
    color: var(--text-muted);
}

.health-details {
    flex: 1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .good {
    color: var(--success);
}

.detail-row .warning {
    color: var(--warning);
}

/* Status Effects */
.status-effects {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.status-card {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
}

.status-card.mild {
    border-left: 3px solid var(--warning);
}

.status-card.severe {
    border-left: 3px solid var(--danger);
}

.status-icon {
    font-size: 28px;
}

.status-info {
    flex: 1;
}

.status-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.status-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.treat-btn {
    padding: 8px 14px;
    background: var(--warning-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: #333;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Medical Services */
.medical-services {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.service-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-option:hover {
    transform: translateX(5px);
}

.service-option.premium {
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(242, 201, 76, 0.3);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-icon-wrapper.basic {
    background: rgba(56, 239, 125, 0.2);
}

.service-icon-wrapper.advanced {
    background: rgba(86, 204, 242, 0.2);
}

.service-icon-wrapper.premium {
    background: rgba(242, 201, 76, 0.2);
}

.service-details {
    flex: 1;
}

.service-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.service-details p {
    font-size: 12px;
    color: var(--text-muted);
}

.service-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--warning);
}

/* Insurance Banner */
.insurance-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(86, 204, 242, 0.1) 0%, rgba(47, 128, 237, 0.1) 100%);
    border-color: rgba(86, 204, 242, 0.3);
}

.insurance-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.insurance-icon {
    font-size: 32px;
}

.insurance-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.insurance-info p {
    font-size: 11px;
    color: var(--text-muted);
}

.buy-insurance-btn {
    padding: 8px 16px;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}