/* Main Container */
.rafflebox-quiz-container {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

/* Quiz Button */
.rafflebox-quiz-button {
    background-color: #E82F3A; /* Rafflebox red color */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rafflebox-quiz-button:hover {
    background-color: #D42830;
}

/* Progress Bar */
.rafflebox-quiz-progress-container {
    width: 100%;
    height: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    margin-bottom: 25px;
    position: relative;
}

.rafflebox-quiz-progress-bar {
    height: 100%;
    background-color: #4AB461;
    border-radius: 5px;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.rafflebox-quiz-progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 15px;
}

/* Modal Styles */
.rafflebox-quiz-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.rafflebox-quiz-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.rafflebox-quiz-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.rafflebox-quiz-close:hover {
    color: #000;
}

/* Screen Styles */
.rafflebox-quiz-screen {
    padding: 10px 0;
}

.rafflebox-quiz-screen h2 {
    color: #166534;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
        letter-spacing: -.4px;

}

.rafflebox-quiz-screen h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #13131c;
}

.rafflebox-quiz-screen .quiz-intro-header{
    font-size: 20px !important;
    letter-spacing: 0.3px;
    background: #166534;
    padding: 1rem;
    color: white;
    border-radius: 5px;

}

.rafflebox-quiz-screen p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
    color: #13131c;
}

/* Question Styles */
.rafflebox-quiz-options {
    margin-bottom: 25px;
}

.rafflebox-quiz-options label {
    display: block;
    margin-bottom: 12px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.rafflebox-quiz-options label:hover {
    background-color: #f9f9f9;
}

.rafflebox-quiz-options input[type="radio"] {
    margin-right: 10px;
}

.rafflebox-quiz-options label.selected {
    background-color: #f0f7ff;
    border-color: #b0d4ff;
}

/* Button Styles */
.rafflebox-quiz-next-button,
.rafflebox-quiz-prev-button,
.rafflebox-quiz-submit-button,
.rafflebox-quiz-email-submit,
.rafflebox-quiz-close-popup {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.rafflebox-quiz-next-button,
.rafflebox-quiz-submit-button,
.rafflebox-quiz-email-submit {
    background-color: #166534;
    color: white;
      display: flex; 
  padding: 8px 36px; 
  justify-content: center; 
  align-items: center; 
  border-radius: 50px; 
  box-shadow: 0px 1.77px 40.713px 7.081px rgba(66, 84, 102, 0.05), 10.045px 30.136px 120.543px 0px rgba(126, 138, 253, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
    border: none;
    display:inline-block;
}

.rafflebox-quiz-next-button:hover,
.rafflebox-quiz-submit-button:hover,
.rafflebox-quiz-email-submit:hover {
    background-color: #4AB461;
}

.rafflebox-quiz-next-button:disabled,
.rafflebox-quiz-submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.rafflebox-quiz-prev-button {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
          display: flex; 
  padding: 8px 36px; 
  justify-content: center; 
  align-items: center; 
  border-radius: 50px; 
  box-shadow: 0px 1.77px 40.713px 7.081px rgba(66, 84, 102, 0.05), 10.045px 30.136px 120.543px 0px rgba(126, 138, 253, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  line-height: 1.5;
    display:inline-block;
}

.rafflebox-quiz-prev-button:hover {
    background-color: #e5e5e5;
}

.rafflebox-quiz-close-popup {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.rafflebox-quiz-close-popup:hover {
    background-color: #e5e5e5;
}

/* Results Styles */
#rafflebox-quiz-result-content {
    margin-bottom: 30px;
}

#rafflebox-quiz-result-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

#rafflebox-quiz-result-content li {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* CTA Button */
.rafflebox-quiz-cta-button {
    background-color: #E82F3A;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.rafflebox-quiz-cta-button:hover {
    background-color: #D42830;
}

/* Email Form */
.rafflebox-quiz-email-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.rafflebox-quiz-email-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.rafflebox-quiz-email-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#rafflebox-quiz-email-success {
    text-align: center;
    padding: 20px;
    background-color: #f1f9f1;
    border-radius: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rafflebox-quiz-modal-content {
        width: 90%;
        padding: 20px;
        margin: 10% auto;
    }
    
    .rafflebox-quiz-screen h2 {
        font-size: 22px;
    }
    
    .rafflebox-quiz-screen h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .rafflebox-quiz-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .rafflebox-quiz-options label {
        padding: 8px 12px;
    }
    
    .rafflebox-quiz-next-button,
    .rafflebox-quiz-prev-button,
    .rafflebox-quiz-submit-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}