#phoneModal.hidden {
    display: none;
}

#phoneModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#phoneModal .phone-modal-box {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

#phoneModal .phone-modal-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

#phoneModal .phone-modal-text {
    margin: 0 0 14px 0;
}

#phoneModal .phone-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

#phoneModal .phone-modal-actions button {
    flex: 1;
}

#phoneModalError {
    color: #d12323;
    font-size: 14px;
    min-height: 20px;
    margin-top: 8px;
}
