#ai-softskills-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(26, 34, 56, 0.5);
    backdrop-filter: blur(10px);
}

#ai-softskills-modal .ai-modal__content {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0px 16px 30px -10px rgba(26, 34, 56, 0.2);
    padding: 36px;
    width: 704px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

#ai-softskills-modal .ai-modal__title {
    font-family: 'Rubik';
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #1A2238;
    margin: 0;
}

#ai-softskills-modal .ai-modal__text {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #9197A6;
    margin: 0;
}

.ai-modal__question-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-modal__question-block label {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 500;
    color: #1A2238;
}

.ai-modal__textarea {
    width: 100%;
    height: 124px;
    padding: 12px;
    background: #F8F8FB;
    border: none;
    border-radius: 6px;
    font-family: 'Rubik';
    font-size: 14px;
    line-height: 22px;
    color: #1A2238;
    resize: none;
}

.ai-modal__textarea::placeholder {
    color: #B8B9B9;
}

.ai-modal__charcount {
    font-family: 'Rubik';
    font-size: 12px;
    color: #1A2238;
    margin-top: 4px;
    align-self: flex-end;
}

.ai-modal__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.ai-modal__btn--submit {
    background: #FF6A3D;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Rubik';
    font-size: 16px;
    color: white;
    border: none;
    cursor: pointer;
}

.ai-modal__btn--cancel {
    background: white;
    border: 1px solid #FF6A3D;
    border-radius: 4px;
    padding: 8px 16px;
    font-family: 'Rubik';
    font-size: 16px;
    color: #1A2238;
    cursor: pointer;
}
