body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #FFD700; /* Fall-back color */
    background-image: url('/redesign/assets/images/background.webp'); /* Relative path from the CSS file */
    background-repeat: repeat; /* Ensures the background image repeats */
    background-size: auto; /* Keeps the original size of the background image */
    color: #000; /* Black text color for better contrast */
    text-align: center;
    padding: 20px;
    transition: background-color 0.5s, color 0.5s;
}

body.page-template-quiz .quiz-answer input[type="radio"]:checked + label {
    background-color: #FFD700; /* Gold */
    color: black; /* Ensure contrast */
}

.quiz-container, .thank-you-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 248, 220, 0.9); /* Light golden background with slight transparency */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    padding: 20px;
}

.quiz-header {
    font-size: 28px; /* Increased font size for prominence */
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF4500; /* Orange red color */
}

.thank-you-header {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FF4500; /* Orange red color */
}

.quiz-question {
    border: 1px solid #ccc; /* Add a border */
    margin: 30px 0; /* Increased spacing between questions */
    font-size: 18px; /* Larger font size for readability */
    background-color: #EEE8AA; /* Pale goldenrod background for highlighting */
    padding: 15px;
    border-radius: 5px;
}

.quiz-answer {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background-color: #EEE8AA; /* Pale goldenrod background */
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative; /* Added for positioning checkmark */
}

.quiz-answer .checkmark {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
}

.quiz-answer:hover {
    background-color: #FFD700; /* Gold background on hover */
}

.highlight {
    color: #FF4500; /* Orange red color */
    font-size: larger;
    font-weight: bold;
    margin: 20px 0;
}

.dreaminders-pitch {
    font-size: 1.2em; /* Slightly larger font to draw attention */
    text-align: center;
    color: black; /* Color matching the theme */
    line-height: 1.4;
    margin: 20px 0; /* Add spacing for separation */
}

.dreaminders-pitch strong {
    font-size: 1.3em;
    color: #ff6699; /* Use accent color for emphasis */
}

.dreaminders-pitch .highlight {
    color: #ffffff; /* Use white or a brighter color for a standout word */
    background-color: #ff6699;
    padding: 2px 6px;
    border-radius: 4px; /* Small highlight effect */
}

.quiz-answer input[type="radio"]:checked + label {
    font-weight: bold;
    color: #00ff00; /* Make the selected option visually distinct */
}


.break {
    margin-top: 20px;
}

.optional-question {
    margin: 30px 0; /* Increased spacing between questions */
    font-size: 18px; /* Larger font size for readability */
    background-color: #EEE8AA; /* Pale goldenrod background for highlighting */
    padding: 15px;
    border-radius: 5px;
}

.quiz-footer {
    text-align: center; /* Center text and inline elements inside the container */
}

.submit-btn {
    display: inline-block; /* Ensure the button is treated as an inline-block element */
    padding: 15px 25px; /* Increased padding for better click target */
    background-color: #FFD700; /* Bright golden color */
    color: #000;
    width: auto;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px; /* Larger font size for readability */
    transition: background-color 0.3s;
    margin: 20px auto; /* Center the button */
}

.submit-btn:hover {
    background-color: #FF6347; /* Tomato color on hover */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.email-links.pulse {
  animation: pulse 1s ease-in-out;
}


.slight-bold {
    font-weight: 600;
}

.merch-link img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.merch-link img:hover {
    transform: scale(1.05);
}

.information-field {
    border: 1px solid #ccc; /* Add a border */
    padding: 10px; /* Add some padding inside the border */
    margin-bottom: 15px; /* Add space between elements */
    border-radius: 5px; /* Optional: add rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

.divider {
    border-top: 1px solid #FF4500;
    margin: 20px 0;
}

.quiz-container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 248, 220, 0.9); /* Light golden background with slight transparency */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    text-align: center;
    color: #FF4500; /* Orange red color */
}

.question {
    margin-bottom: 15px;
}

.question label {
    display: block;
    margin-bottom: 5px;
}

input[type="radio"] {
    margin-right: 10px;
}

.personal-info {
    margin-top: 20px;
}

.personal-info label {
    display: block;
    margin-top: 10px;
}

button[type="submit"] {
    display: block;
    width: auto;
    padding: 10px;
    background-color: #ffbf00; /* Tomato color on hover */
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.divider {
    border-top: 1px solid #FF4500;
    margin: 20px 0;
}
.thank-you-container {
    max-width: 600px;
    width: calc(100% - 20px);
    margin: 20px auto;
    background-color: rgba(255, 248, 220, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.thank-you-header {
    font-size: 36px;
    font-weight: bold;
    color: #FF4500; /* Orange red color */
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

.check-email-cta {
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    color: #FF4500; /* Orange red color */
    background-color: #FFD700;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
}

.check-email-cta:hover {
    transform: scale(1.05);
    background-color: #FF6347; /* Tomato color on hover */
}
.email-links {
    margin-top: 20px;
}

.email-links a {
    display: inline-block;
    margin: 10px;
}

.email-links img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.email-links img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.email-image {
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.email-image {
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Progress bar styles */
