/* Post-login client health-alert popup (_HealthAlertModal.cshtml).
   Colors restricted to the approved project palette (see CLAUDE.md):
   Amber #F7C800, Dark Slate #02455F, Lupquise #23C4CC, White #FFFFFF, Black #000000. */

.health-alert-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 16px;
}

.health-alert-modal-overlay.show {
    display: flex;
}

.health-alert-modal {
    background: #FFFFFF;
    color: #02455F;            /* Dark Slate */
    width: 100%;
    max-width: 540px;
    border-radius: 10px;
    border-top: 6px solid #F7C800; /* Amber accent */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
    overflow: hidden;
}

.health-alert-modal-body {
    padding: 22px 24px 6px 24px;
    line-height: 1.45;
    font-weight: 600;
}

.health-alert-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #02455F;
}

.health-alert-modal-title .health-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F7C800;       /* Amber */
    color: #02455F;
    font-weight: 800;
}

.health-alert-message {
    margin: 0;
}

.health-alert-link,
.health-alert-client {
    color: #02455F;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
}

.health-alert-link:hover,
.health-alert-client:hover {
    color: #000000;
}

.health-alert-list {
    margin: 10px 0 0 0;
    padding-left: 22px;
    max-height: 260px;
    overflow-y: auto;
}

.health-alert-list li {
    margin: 3px 0;
}

.health-alert-hint {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
    color: #5B5B5B;           /* Black 60% */
}

.health-alert-modal-actions {
    padding: 14px 24px 20px 24px;
    text-align: right;
}

.health-alert-ok {
    background: #02455F;       /* Dark Slate */
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 9px 28px;
    font-weight: 700;
    cursor: pointer;
}

.health-alert-ok:hover {
    background: #23C4CC;       /* Lupquise */
}
