.survey-title {
    display: flex;
    align-items: center;
}
.survey-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #172670, #00d3dd);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    font-family: 'Calibre', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height:21px;
}

.survey-banner .surveyCompact-banner {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    cursor: pointer;
}

.survey-banner .survey-title {
    font-size: 16px;
    font-weight: 600;
}

.survey-banner .highlight {
    color: #FFF800;
    font-weight: 700;
}

.survey-banner .cta-button {
    color: #FFF800;
    font-weight: 800;
    font-family: 'Overpass Mono', monospace;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 4px;
    margin: 0 5px;
}

.survey-banner .expand-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.survey-banner .expanded-content {
    padding: 15px 20px;
    display: none;
    position: relative;
}

.survey-banner .expanded-content.visible {
    display: block;
}

.survey-banner .expanded-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    color:#fff;
}

.survey-banner .survey-details {
text-align: center;
margin-bottom: 15px;
display: block;
}
.survey-details p {
line-height: 2.5rem;
}
.survey-banner .timezone-info {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
}

.survey-banner .timer-container {
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.survey-banner .benefits {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.survey-banner .benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.survey-banner .benefit-icon {
    color: #FFF800;
    margin-right: 8px;
}

.survey-banner .survey-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.survey-banner .name-row {
    display: flex;
    gap: 15px;
}

.survey-banner .name-field {
    flex: 1;
}

.survey-banner .form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    opacity: 0.9;
}

.survey-banner .form-input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.survey-banner .form-submit {
    width: 100%;
    background: #FFF800;
    color: #172670;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Overpass Mono', monospace;
    margin-top:15px;
}

.survey-banner .spots-left {
    text-align: center;
    font-size: 15px;
    opacity: 1;
    color: black;
}

.survey-banner .screen-reader-response {
    display: none;
}

span.wpcf7-not-valid-tip, .wpcf7-response-output {
    font-weight: 600;
    color: #fef802;
}

.survey-banner .form-submit:hover {
    background: #00d3dd;
}

.survey-banner .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.survey-banner .spots-left {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* Mobile responsive styles */
@media (max-width: 767px) {
    .survey-banner .expanded-content.visible {
        display: block;
        line-height: 21px;
    }
    .survey-banner .survey-title {
        font-size: 14px;
    }
    .show-mobile {
display: block;
}
.show-mobile.toggle-visible {
display: block;
}
   
    .survey-banner .name-row {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Add these styles to your stylesheet */

/* Alert Styling */
.survey-alert {
position: fixed;
top: 70px;
left: 50%;
transform: translateX(-50%);
z-index: 9999;
padding: 12px 20px;
border-radius: 4px;
max-width: 90%;
box-shadow: 0 3px 10px rgba(0,0,0,0.2);
font-size: 16px;
font-weight: 500;
text-align: center;
}

.survey-alert--success {
background-color: #4CAF50;
color: white;
}

.survey-alert--error {
background-color: #F44336;
color: white;
}

/* Animation for alerts */
@keyframes fadeIn {
from { 
opacity: 0; 
transform: translate(-50%, -20px); 
}
to { 
opacity: 1; 
transform: translate(-50%, 0); 
}
}

@keyframes fadeOut {
from { 
opacity: 1; 
transform: translate(-50%, 0); 
}
to { 
opacity: 0; 
transform: translate(-50%, -20px); 
}
}

.survey-alert {
animation: fadeIn 0.3s ease-out;
}

.survey-alert.removing {
animation: fadeOut 0.3s ease-in;
}

/* Optional: Add highlight effect to form fields with errors */
.wpcf7-not-valid {
border: 1px solid #d63415 !important;
}

.survey-toast {
position: fixed;
bottom: 10%;
background: #4CAF50;
color: white;
padding: 30px 20px;
border-radius: 6px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
font-size: 16px;
z-index: 9999;
opacity: 0;
transform: translateY(20px);
transition: all 0.4s ease;
left: 0%;
margin: 0 20px;
width: 300px;
text-align: center;
}

.survey-toast.show {
opacity: 1;
transform: translateY(0);
}
    .padding-top0 {
padding-top: 0px !important;
}
    
}

@media(min-width:767px){
body.home.page-template-default.page.page-id-88609.page-child.logged-in.admin-bar.customize-support{
padding-top:0px!important;
}
body.home.page-template-default.page.page-id-88609.page-child{
padding-top:0px!important;
}

}
@media(max-width:767px){
body.home.page-template-default.page.page-id-88609.page-child.logged-in.admin-bar.customize-support{
padding-top:0px!important;
}
}


/* Multi-step survey form styles */
.si-survey-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.si-survey-form .survey-progress {
    margin-bottom: 20px;
}

.si-survey-form .progress-bar {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.si-survey-form .progress-fill {
    height: 100%;
    background-color: #0073aa;
    transition: width 0.3s ease;
}

.si-survey-form .progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.si-survey-form .survey-step {
    margin-bottom: 20px;
}

.si-survey-form .survey-question {
    margin-bottom: 15px;
}

.si-survey-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.si-survey-form input[type="text"],
.si-survey-form input[type="number"],
.si-survey-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.si-survey-form .invalid {
    border: 1px solid #ff0000 !important;
}

.si-survey-form .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.si-survey-form button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.si-survey-form button:hover {
    background-color: #005177;
}

.si-survey-form button.prev-step {
    background-color: #666;
}

.si-survey-form button.prev-step:hover {
    background-color: #444;
}

.si-survey-form .survey-messages {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
}

.si-survey-form .survey-message {
    padding: 10px;
    border-radius: 4px;
}

.si-survey-form .survey-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.si-survey-form .survey-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.si-survey-form .survey-complete {
    text-align: center;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 5px;
}

.si-survey-form .survey-intro {
    text-align: center;
    margin-bottom: 20px;
}


/* Add this CSS to your existing css/custom.css file */

/* Age field validation styles */
.si-survey-form #age.invalid {
    border: 2px solid #d63638;
    background-color: #ffeaea;
}

.si-survey-form #age.age-error {
    border: 2px solid #d63638;
    background-color: #ffeaea;
}

/* Error message styling for age field */
.si-survey-form #age.invalid + .age-error-message,
.si-survey-form #age.age-error + .age-error-message {
    color: #d63638;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* General invalid field styling (if not already present) */
.si-survey-form .invalid {
    border: 2px solid #d63638 !important;
    background-color: #ffeaea !important;
}

/* Focus state for age field */
.si-survey-form #age:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Question of the Month CTA */
.si-qotm-cta-container {
    text-align: center;
    padding: 10px 15px;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	display: none;
}

.si-qotm-intro-text {
    font-size: 14px;
	line-height: 19px;
    color: #162670;
    font-weight: 600;
	position: relative;
}
.si-qotm-intro-text::before {
    content: '?';
    position: absolute;
    top: 50%;
    right: -40px;
    height: 30px;
    width: 30px;
    color: #ffffff;
    background-image: radial-gradient(#02bfc9, #162670);
    font-size: 30px;
    border-radius: 50%;
    line-height: 30px;
    transform: translateY(-50%);
}

.si-qotm-cta-button {
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 14px;
    background-color: #162670;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 12px;
	line-height:16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	font-family: Calibre, sans-serif;
	text-transform: uppercase;
}

.si-qotm-cta-button:hover {
    background-color: #ff704a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.si-qotm-cta-button svg {
    flex-shrink: 0;
	width: 20px;
	height: 20px;
}

/* Question of the Month Modal */
.si-qotm-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
	transform: translatey(-50%);
	
}
.si-qotm-header-section-wrap{
	background-color:#162670;
	color:#ffffff;
	padding:30px;
}
.si-qotm-modal-content {
    color: #ffffff;
    max-width: 500px;
    width: 85%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}
.qotm-bottom {
    background: #fff;
    padding-bottom: 30px;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.si-qotm-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.si-qotm-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.si-qotm-header {
    text-align: center;
	display:flex;
	gap:15px;
	align-items:flex-start;
	justify-content:flex-start;
	margin-top:30px;
}

.si-qotm-icon {
    color: #ffffff;
    margin-bottom: 15px;
}

.si-qotm-header h2 {
    color: #ffffff;
    font-size: 16px;
	line-height: 26px;
	margin-bottom:4px;
    font-weight: 500;
	font-family: Calibre, sans-serif;
}

.si-qotm-question {
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    color: #ffffff;
    font-weight: 800;
}

.si-qotm-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0px;
	padding:30px;
	
}

.si-qotm-option {
    background: #e2e2e2;
    border: 2px solid transparent;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #ffffff;
	Justify-content: center;
	height: 100px;
}

.si-qotm-option:hover {
    background:  #e2e2e2;
    transform: translateY(-2px);
}

.si-qotm-option.selected {
    border-color: #162670;
}

.si-qotm-option svg {
    color: #27ae60;
}

.si-qotm-option span {
    font-size: 14px;
    font-weight: 500;
	color: #000000;
}

.si-qotm-done {
	width: 160px;
    background-color: #2de98a;
    color: #000;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 10px 40px;
    text-align: center;
    margin: 0px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-qotm-done:hover {
    background-color: #ff704a;
}
span.qotm-modal-icon {
    height: 50px;
    width: 50px;
    color: #ffffff;
    background-image: radial-gradient(#02bfc9, #162670);
    font-size: 50px;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
}
span.qotm-modal-noIcon {
    font-size: 20px;
    font-weight: bold;
    line-height: 25px;
    color: #162670;
}

/* Responsive adjustments */
@media(max-width: 767px) {
	.si-qotm-cta-container {
		display: flex;
	}
}
@media (max-width: 480px) {
    .si-qotm-modal-content {
        padding-bottom: 20px;
    }
   
    .si-qotm-options {
        grid-template-columns: repeat(2, 1fr);
		padding: 20px;
    }
    .si-qotm-header-section-wrap {
		padding: 20px;
	}
    .si-qotm-option {
        padding: 10px 10px;
    }
	.si-qotm-option {
		height: 90px;
	}
	.si-qotm-question {
		font-size: 22px;
		line-height: 27px;
	}
	.qotm-bottom {
		padding-bottom: 20px;
	}


}
@media(max-width: 375px) {
	.si-qotm-option {
		height: 75px;
	}
}

.si-qotm-option img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}




/* Question of the Month Message Styles */
.si-qotm-message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.si-qotm-message-success {
    background-color: rgba(39, 174, 96, 0.15);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.si-qotm-message-error {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.si-qotm-message-warning {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f39c12;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

/* Loading state for button */
.si-qotm-done:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success animation - checkmark */
.si-qotm-message-success::before {
    content: "✓";
    margin-right: 8px;
    font-weight: bold;
    font-size: 16px;
}

/* Error animation - X mark */
.si-qotm-message-error::before {
    content: "✕";
    margin-right: 8px;
    font-weight: bold;
    font-size: 16px;
}

/* Warning animation - exclamation */
.si-qotm-message-warning::before {
    content: "!";
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background-color: currentColor;
    color: #1a1a1a;
    margin-right: 8px;
    font-weight: bold;
    text-align: center;
}

/* Survey Exit Container Styles */
.survey-exit-container {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    margin: 20px 0;
}

.survey-exit-message h3 {
    color: #495057;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.exit-message-content {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exit-message-content p {
    margin-bottom: 15px;
}

.exit-actions {
    margin-top: 30px;
}

.close-survey {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.close-survey:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Exit Warning Styles */
.exit-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
    border-color: #ffc107 !important;
    font-weight: 600;
}

.exit-warning:hover {
    background-color: #ffca2c !important;
    color: #212529 !important;
    transform: none;
}

.exit-inline-warning {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Admin Dashboard Exit Status Styles */
.survey-response-table .status-completed {
    color: #28a745;
    font-weight: 600;
}

.survey-response-table .status-exit {
    color: #dc3545;
    font-weight: 600;
}

.survey-response-table .exit-reason {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
    margin-top: 3px;
}

/* Statistics Dashboard Styles */
.survey-stats-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 5px;
}

.survey-stats-container > div {
    flex: 1;
    text-align: center;
}

.survey-stats-container strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.completion-rate {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
}

.exit-reasons-breakdown {
    margin: 20px 0;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 3px;
}

.exit-reasons-breakdown h4 {
    margin-top: 0;
    color: #856404;
}

.exit-reasons-breakdown > div {
    margin: 8px 0;
    padding: 5px 0;
    border-bottom: 1px solid #ffeaa7;
}

.exit-reasons-breakdown > div:last-child {
    border-bottom: none;
}

/* Survey Form Enhancements */
.survey-step[data-is-exit="1"] {
    border-left: 4px solid #ffc107;
    padding-left: 20px;
    background: linear-gradient(to right, #fff8e1, #ffffff);
}

/* .survey-step[data-is-exit="1"]::before {
    content: "⚠️";
    position: absolute;
    left: -5px;
    top: 10px;
    font-size: 18px;
} */

.survey-step {
    position: relative;
}

/* Progress Bar Enhancement for Exit Questions */
.survey-progress {
    position: relative;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    background: linear-gradient(45deg, #0073aa, #005177);
    height: 100%;
    transition: width 0.5s ease;
    border-radius: 4px;
}

/* When on exit question, show warning color in progress */
.survey-form[data-on-exit-question="true"] .progress-fill {
    background: linear-gradient(45deg, #ffc107, #ff8f00);
}

.progress-text {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .survey-exit-container {
        padding: 30px 15px;
        margin: 15px 0;
    }
    
    .survey-exit-message h3 {
        font-size: 20px;
    }
    
    .exit-message-content {
        font-size: 14px;
    }
    
    .close-survey {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .survey-stats-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .survey-stats-container > div {
        text-align: left;
    }
}

/* Enhanced Button Styles */
.si-survey-form .next-step,
.si-survey-form .to-demographics,
.si-survey-form .submit-survey,
.si-survey-form .prev-step {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.si-survey-form .next-step::before,
.si-survey-form .to-demographics::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.si-survey-form .next-step:hover::before,
.si-survey-form .to-demographics:hover::before {
    left: 100%;
}

/* Loading States */
.si-survey-form .submit-survey:disabled,
.si-survey-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.si-survey-form .submit-survey:disabled::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Survey Messages Enhancement */
.survey-messages {
    margin: 15px 0;
    padding: 0;
}

.survey-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 500;
    animation: fadeInDown 0.3s ease-out;
}

.survey-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.survey-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Dropdown Enhancements */
.survey-response-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    margin: 0 10px;
}

.survey-response-form label {
    font-weight: 600;
    color: #495057;
}

/* Table Enhancements for Exit Data */
.survey-response-table th,
.survey-response-table td {
    vertical-align: top;
    padding: 12px;
}

.survey-response-table .status-column {
    min-width: 120px;
}

.survey-response-table .status-column small {
    display: block;
    margin-top: 3px;
    line-height: 1.3;
}

/* Completion Status Icons */
.status-icon-completed::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 5px;
}

.status-icon-exit::before {
    content: "✗";
    color: #dc3545;
    font-weight: bold;
    margin-right: 5px;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .survey-exit-container {
        background: #2c3e50;
        border-color: #34495e;
        color: #ecf0f1;
    }
    
    .survey-exit-message h3 {
        color: #ecf0f1;
    }
    
    .exit-message-content {
        color: #bdc3c7;
    }
    
    .survey-stats-container {
        background: #34495e;
        color: #ecf0f1;
    }
    
    .exit-reasons-breakdown {
        background: #f39c12;
        color: #2c3e50;
    }
}
/**== survey table responsive css **/
@media(max-width: 600px) {
.matrix-table .radio-custom {
	height: 10px;
	width: 10px;
}
	.si-survey-form .survey-step {
		padding: 30px 15px!important;
	}

}
@media(max-width: 480px) {
	.matrix-table th, .matrix-table td {
		font-size: 11px!important;
	}
	    .si-survey-form .survey-step {
        padding: 30px 10px !important;
    }
	.matrix-table th, .matrix-table td {
        padding: 8px 5px!important;
    }
	    .matrix-table .radio-custom {
        height: 8px;
        width: 8px;
    }
}
@media (max-width: 375px) {
	    .matrix-table th, .matrix-table td {
        font-size: 10px !important;
    }
	    .si-survey-form .survey-step {
        padding: 30px 5px !important;
    }
	 .matrix-table .radio-custom {
        height: 5px;
        width: 5px;
    }
	.matrix-table th, .matrix-table td {
        padding: 7px 3px!important;
    }
}
@media(max-width: 350px) {
	.matrix-table th, .matrix-table td {
        font-size: 9px !important;
    }
}

