.elementor-4835 .elementor-element.elementor-element-3bc9a47{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-af4971e *//* ✅ Form Container */
#cv-input-form-7 {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: auto;
}

/* ✅ Heading Style */
#cv-input-form-7 h2 {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
}

#cv-input-form-7 p {
    font-size: 14px;
    color: #c62828;
    margin-bottom: 16px;
}

/* ✅ Form Row (Wraps Objective + Strength) */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ✅ Form Group Wrapper */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ✅ Label Wrapper */
.label-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.label-wrapper::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

/* ✅ Label Styling */
label {
    font-size: 16px;
    font-weight: 500;
    color: #424242;
}

/* ✅ Textarea Styling */
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fafafa;
    resize: none;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

/* ✅ Focus Effect for Textarea */
textarea:focus {
    border-color: #c62828;
    outline: none;
}

/* ✅ Form Buttons Wrapper */
.form-buttons {
    display: flex;
    justify-content: right;
    margin-top: 24px;
}

/* ✅ Right Button Group (Save + Download) */
.right-buttons {
    display: flex;
    gap: 12px;
}

/* ✅ General Button Styling */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, opacity 0.2s;
}

/* ✅ Previous Button */
.btn-secondary {
    background-color: #424242;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #333333;
}

/* ✅ Save Button */
.btn-save {
    background-color: #c62828;
    color: #ffffff;
}

.btn-save:hover {
    background-color: #b71c1c;
}

/* ✅ Download Button */
.btn-download {
    background-color: #8c2727;
    color: #ffffff;
}

.btn-download:hover {
    background-color: #7b1c1c;
}

/* ✅ Hover Effects */
.btn:hover {
    opacity: 0.85;
}

/* ✅ Wrapper cho nút Previous Step (căn trái) */
.prev-step-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

/* ✅ Wrapper cho nút Next Step (căn phải) */
.next-step-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: -46px;
}

/* ✅ Style cho nút Previous Step */
#prev_step {
    background-color: #424242;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

#prev_step:hover {
    opacity: 0.8;
}

/* ✅ Style cho nút Next Step */
.next-step-btn {
    background-color: #323434 !important;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-step-btn:hover {
    opacity: 0.8;
}


/* ✅ Mobile Optimization */
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .right-buttons {
        flex-direction: column;
        gap: 12px;
    }

    textarea {
        font-size: 14px;
    }

    .btn {
        width: 100%;
    }
}/* End custom CSS */