div#questions p strong {
    /* font-size: large; */
    color: #cfff92;
    font-size: 24px;
    line-height: 25px;
}


div#questions p {
  margin: 0px 0px 20px 0px !important;
}

div#questions input[type="radio"]:checked + label {
    color: #cfff92;        /* Change text color */
    font-weight: bold;    /* Optional: make it bold */
}

/* Optional: make the circle itself green when checked */
div#questions input[type="radio"]:checked {
    accent-color: #cfff92; /* Works in modern browsers */
}

/* Make the label clickable */
div#questions label {
    cursor: pointer;
}


#air-result {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh !important;
    /* background: rgba(31, 31, 31, 0.9);  */
    /* border: 2px solid #cfff92;
    border-radius: 10px; 
  
    padding: 20px;
    color: #cfff92;  */
    font-family: Arial, sans-serif; /* Consistent font */
    font-size: 1.2em; /* Slightly larger text for readability */
    text-align: center;
    animation: fadeIn 0.5s ease-in; /* Smooth fade-in animation */
    position: relative;
    z-index: 1000; /* Ensure it stays above other content */
}


@media (max-width: 767px) {
    #ai-readiness-app {
        padding: 14px !important;
    }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Optional: Style the text inside for better hierarchy */
#air-result h6 {
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Optional: Add a subtle hover effect for interactivity */
#air-result:hover {
    background: rgba(40, 40, 40, 0.9); /* Slightly darker on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}


#ai-readiness-app {
    border: 2px solid transparent; /* Base border for layering */
    border-radius: 15px; /* Rounded corners for a modern look */
    padding: 30px; /* Consistent padding */
    background: rgba(31, 31, 31, 0.9); /* Semi-transparent dark background */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
    color: #f1f1f1; /* Green text to match the brand */
    font-family: Arial, sans-serif; /* Consistent font */
    max-width: 900; /* Limit width for better readability */
    margin: 20px auto; /* Center the container with margin */
    position: relative;
    overflow: hidden; /* Ensure content stays within bounds */
    z-index: 1; /* Below #air-result but above other content */
}


#questions p label input[type=radio] {
    /* display: flex; */
    margin-right: 10px;
}

.progress-box {
  background: rgb(207 255 146);
  height: 20px;
  width: 20%;
  border-radius: 10px;
  color: rgb(0 0 0);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px; /* keeps text vertically centered */
}


/* Mobile (max width 767px) */
@media (max-width: 767px) {
    button#prev-btn,
    button#next-btn {
        padding: 12px 25px !important; /* smaller padding for mobile */
    }
}

