/* בסיס למודל */
.ai-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

/* רקע כהה מאחורי המודל */
.ai-modal__backdrop {
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 56, 0.5) !important;
    backdrop-filter: blur(10px);
}

/* תוכן המודל */
.ai-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 452px;
    height: 296px;
    background: #FFFFFF;
    box-shadow: 0px 16px 30px -10px rgba(26, 34, 56, 0.2) !important;
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* כותרת */
.ai-modal__title {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #1A2238;
    margin: 0;
}

/* טקסט תיאור */
.ai-modal__text {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #1A2238;
    margin: 0;
}

/* פעולות */
.ai-modal__actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

/* כפתור: קבלת עצה */
.ai-modal__btn--advice {
    flex: 1;
    background: linear-gradient(276.79deg, #9747FF 0%, #034C95 100%);
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* כפתור: המשך ללא עריכה */
.ai-modal__btn--proceed {
    background: #fff;
    color: #1A2238;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    border: 1px solid #1A2238;
    border-radius: 4px;
    cursor: pointer;
    width: 185px;
    height: 40px;
}
