/* assets/css/roi-style.css */
#laser-roi-container {
    color: #ffffff;
    padding: 0 30px;
}

#laser-roi-container h3 {
    color: #e31e24;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #e31e24;
    padding-bottom: 10px;
}

/* ... Copy toàn bộ các class CSS còn lại vào đây ... */

.contact-cta {
    margin-top: 15px;
    display: block;
    text-align: center;
    color: #e31e24;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
}
/* Tùy chỉnh thanh trượt */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #e31e24;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
}

#roi_result_box {
    transition: all 0.3s ease;
}
.roi-field {
    margin-bottom: 15px; /* Giảm khoảng cách để gọn hơn */
}

.roi-field label {
}

#roi_value {
    font-size: 18px; /* Giảm nhẹ để hiển thị số tiền tỷ không bị tràn dòng */
    line-height: 1.4;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.contact-cta {
    animation: pulse 2s infinite; /* Nút sẽ co giãn nhẹ để thu hút sự chú ý */
    display: block;
    background: #e31e24;
    color: white !important;
    text-decoration: none !important;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}