/* Custom Styles for Animation Widget */
.chapter-item {
    margin-bottom: 15px;
    padding: 0 10px;
    color: black;
}

.chapter-heading {
    font-weight: bold;
    font-size: calc(12px + 0.3vw);
    padding: 5px 0;
    line-height: 1.0;
}

.chapter-subheading {
    margin-left: 15px;
    font-size: calc(10px + 0.2vw);
    padding: 3px 0;
}

.chapter-subheading::before {
    content: "✧ ";
}

/* Slider styles */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #28A745;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #28A745;
    cursor: pointer;
}

/* Desktop styles for email form */
@media (min-width: 701px) {
    #beta-input-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    #beta-site-input {
        margin-bottom: 0;
        width: 70%;
    }

    #beta-submit-button {
        width: 30%;
        background-color: #cf2e2e;
        color: white;
    }
}

/* Mobile styles for email form */
@media (max-width: 700px) {
    #beta-input-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    #beta-site-input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    #beta-submit-button {
        width: 100%;
        background-color: #cf2e2e;
        color: white;
    }
    
    #beta-button-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 15px;
    }
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-heading {
    font-size: 1.25rem;
    font-weight: 600;
}

.step-description {
    font-size: 1rem;
    line-height: 1.1;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 1rem;
}

.faq-question {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #363636;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Optional: Add hover effects */
.faq-item:hover .faq-question {
    color: #007bff;
}

.faq-item:hover .faq-answer {
    background-color: #f5f5f5;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
}