.health-card {
    border: 1px solid #2c4845;
    background: linear-gradient(155deg, #172522, #191b1d 64%);
}

.health-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.health-card-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #24443f;
    color: #7ce8dc;
    font-size: 24px;
}

.health-card-title {
    margin: 0 0 3px;
    font-size: 18px;
}

.health-card-subtitle,
.health-status-row,
.health-privacy-copy,
.health-apple-note {
    color: #9aa6a8;
    font-size: 12px;
    line-height: 1.5;
}

.health-status-grid {
    display: grid;
    gap: 7px;
    margin: 13px 0;
    padding: 12px;
    border-radius: 13px;
    background: rgba(6, 11, 11, 0.48);
}

.health-status-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.health-status-row strong {
    color: #dce5e4;
    text-align: right;
}

.health-permission-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 13px 0;
    padding: 0;
    border: 0;
}

.health-permission-option {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px;
    border: 1px solid #35433f;
    border-radius: 11px;
    color: #c5cfcd;
    font-size: 12px;
}

.health-permission-option input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 0;
    accent-color: #26a69a;
}

.health-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 13px;
}

.health-actions button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
}

.health-apple-note {
    margin-top: 14px;
    padding: 11px;
    border-left: 3px solid #737d83;
    border-radius: 8px;
    background: rgba(22, 25, 28, 0.72);
}

.health-apple-note strong {
    color: #e2e7e8;
}

#healthProfileStatus {
    min-height: 20px;
    margin-top: 10px;
}

@media (max-width: 370px) {
    .health-permission-list,
    .health-actions {
        grid-template-columns: 1fr;
    }
}
