.todaa-health-confirmation {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.todaa-health-confirmation.is-active {
    display: flex;
}

.todaa-health-confirmation__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.todaa-health-confirmation__dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    direction: rtl;
}

.todaa-health-confirmation__title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 22px;
    text-align: center;
}

.todaa-health-confirmation__body {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.todaa-health-confirmation__body p {
    margin: 0 0 12px;
}

.todaa-health-confirmation__actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.todaa-health-confirmation__button {
    padding: 10px 24px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.todaa-health-confirmation__button--approve {
    background-color: #00c6d7;
    color: #fff;
}

.todaa-health-confirmation__button--approve:hover {
    background-color: #00a8b5;
}

.todaa-health-confirmation__button--close {
    background-color: #e5e5e5;
    color: #333;
}

.todaa-health-confirmation__button--close:hover {
    background-color: #ccc;
}
