body {
    background-image: url(./images/background.png);
    background-position: center;
    background-size: cover;
}

.navbar {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.212);
}

.navbar img {
    width: 100px;
}


.q-label {
    text-align: center;
    font-family: Laleza;
    font-size: 39px;
    color: #006064;
}

.main-section-inner {
    width: 500px;
}

.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}


hr {
    width: 100px;
    align-self: center;
    justify-self: center;
    padding: 0;
    margin: 0 !important;
}

.chapter-item-bubble {
    color: white;
    padding: 10px 15px;
    width: 100%;
}

#sub {
    height: 44px;
    transform: translate(-1px, 44px);
    background-color: white;
    border-bottom-right-radius: 50px;
    margin: 0 auto;
}

.chapter-item-q-bubble {
    height: auto;
    margin: -5px auto 0 auto;
}

#subwhite {
    height: 43px;
    background-color: #006064;
    top: 58px;
}

.question-description {
    min-height: 60px;
    background-color: #006064;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
    color: #ffffff;
    padding: 10px;
    margin: -1px auto 0 auto;
    font-family: Cairo-Regular;
    font-size: 20px;
    position: relative;
    text-align: right;
    display: flex;
    align-items: center;
}

label {
    text-align: center;
    font-family: Laleza;
    font-size: 39px;
    font-weight: 900;
    color: #006064;
}

textarea {
    background: #F2F1F1 0% 0% no-repeat padding-box;
    border: 1px solid #7070706E;
    border-radius: 19px;

    min-height: 150px;

}



.btn {
    border: 1px solid black !important;
    border-radius: 25px !important;

}

.continue-btn {
    border-radius: 50px;
    border: 1px solid #707070;
    color: #1B5637;
    background-color: #FFFFFF;
    font-size: 25px;
    text-align: center;
    padding: 6px 24px;
    font-family: Laleza;
    margin-bottom: 4px;

}

.progress {
    border: 1px solid rgba(0, 0, 0, 0.133);
    background-color: white !important;
    width: 70%;
    margin: auto;
}

.progressBar {
    background: transparent linear-gradient(270deg, #00FF00 0%, #008000 100%) 0% 0% no-repeat padding-box !important;

}


.footer-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    background-color: white;
    padding: 10px;
}










.drag-btn {
    margin: 5px;
    padding: 10px 16px;
    border: 1px solid #333;
    border-radius: 20px;
    background-color: white;
    cursor: grab;
}

.drag-btn.dropped {
    background-color: #006425;
    color: white;
    cursor: default;
}

.drop-zone {
    min-height: 80px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    margin: 20px 0;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


@media screen and (max-width:765px) {
    .main-section-inner {
        width: 90%;
    }

    textarea {
        width: 100%;
    }

    .progress {
       
        width: 90%;
    
    }
}