.progress-bar-container {
        width: 100%;
        background-color: #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .progress-bar {
        height: 30px;
        border-radius: 8px;
        background-color: #4CAF50;
        width: 0%; /* Default to 0, JavaScript will update this */
        text-align: center;
        line-height: 30px;
        color: white;
    }
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0,0,0,0);
        border: 0;
    }
    .question {
        display: none;
    }

    .question:first-of-type {
        display: block;
    }
    .conditional_text {
        display: none;
    }

    .radio-label {
        display: inline-block;
        padding: 10px 20px;
        margin: 5px;
        background-color: transparent; /* No background color initially */
        border: 2px solid black;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
        font-family: 'Open Sans', sans-serif; /* Set the font family to Open Sans */
    }

    .radio-label input[type="radio"] {
        display: none; /* Hide the actual radio button */
    }

    .radio-label:hover {
        background-color: #f8f8f8; /* Light grey background on hover */
    }

    /* Selector to change the background of the entire label and text color when checked */
    .radio-label input[type="radio"]:checked + .smart_button_text {
        background-color: black; /* Black background for checked state */
        color: white; /* White text for checked state */
        font-weight: 700; /* Set font-weight to bold */
    }

    .smart_button_text {
        font-weight: bold; /* Set the font-weight to bold */
        color: black; /* Default text color */
    }

    .smart-button-container {
        display: flex;
        justify-content: center;
        gap: 20px; /* Adjust the space between buttons as needed */
        margin-top: 20px; /* Space above the button container */
    }
   .completion-date-box {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;  /* Assuming you're using Open Sans elsewhere */
    font-size: 16px;
    color: #333;
}
.summary-container {
    border: 2px solid #000;
    padding: 10px;
    margin: 10px;
    background-color: transparent;
    width: calc(100% - 24px);
    box-sizing: border-box;
    border-radius: 10px;
    position: relative; /* Added so the ::before pseudo-element is positioned relative to this box */
    text-align: center; /* Centers the content inside */
    display: none;

}
