*{
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
}

body{
    background-color: var(--background-black);
}


.wrapper{
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    
    padding-top: 0rem;
    padding-bottom: 0rem;
    position: relative;
}

.wrapper-center{
    display: grid;
    justify-content: center;
    align-items: center;
}








.textField{
    margin: .5rem;
    font-size-adjust: 1rem;
    padding: .5rem;
    border: solid var(--background-gray) 1px;
    width: calc(100% - 2rem - 1px);
    border-radius: .25rem;
    resize: vertical;
}

.textField:hover,
.textField:focus{
    outline: none;
}

.textFieldCode{
    margin: .5rem;
    font-size-adjust: 1rem;
    padding: .5rem;
    background-color: #525252;
    color: white;
    border: solid var(--background-gray) 1px;
    width: calc(100% - 2rem - 1px);
    border-radius: .25rem;
    resize: vertical;
    height: auto;

}

.textFieldCode:hover,
.textFieldCode:focus{
    outline: none;
}

.textFieldCrawlData{
    margin: .5rem;
    font-size-adjust: 1rem;
    padding: 2rem;
    background-color: transparent;
    color: black;
    border: solid var(--background-gray) 1px;
    width: calc(100% - 5rem - 2px);
    justify-content: center;
    border-radius: .25rem;
    height: auto;
    overflow: hidden;

}









/*php sections*/

/*HEADER-SECTION*/
.header-section{
    padding: .5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background-color: var(--background-black);
    color: black;
}
.header-section > h6{
    padding: .5rem;
}
.icon-button{
    background-color: transparent;
    width: 1.75rem;
    height: 1.75rem;
    padding: .25rem;
    margin: .5rem;
    align-self: center;
    border-radius: .25rem;
    border: solid 1px var(--background-gray);
}
.icon-button:hover{
    cursor:pointer;
    background-color: var(--action);
    border: solid 1px var(--action);
}

.icon-round{
    background-color: transparent;
    width: 1.5rem;
    height: 1.5rem;
    padding: .25rem;
    margin: .5rem;
    border: solid black 1px;
    align-self: center;
    border-radius: 100%;
    filter:invert();
    transition: all ease-in .1s;

}

.icon-round:hover{
    transform: scale(1.1, 1.1);
}








.gridLayout3{
    display: grid;
    grid-template-rows: auto;
    column-gap: .5rem;
    row-gap: .5rem;
}





.input-field{
    padding: .5rem;
    margin: .5rem;
    outline: none;
    border: solid var(--background-gray) 1px;
    border-radius: .25rem;
    width: calc(100% - 2rem - 1px);
}

.input-field-hidden{
    padding: .5rem;
    margin: .5rem;
    outline: none;
    border: solid transparent 1px;
    border-radius: .25rem;
    width: calc(100% - 2rem - 1px);
    font-size: large;
}






.input-field-with-value{
    border: solid 1px var(--background-gray);
    margin: .5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2;
    border-radius: .5rem;
    background-color: white;
    border-left: .5rem solid var(--background-gray);
    position: relative;
}










.devider{
    width: 100%;
    border-bottom: solid 1px var(--background-gray);
}

.devider_action{
    width: 100%;
    border-bottom: solid 1px var(--action); 
}

.spacer-2{
    height: 2rem;
    width: 100%;
    background-color:#1d1d1d;
}

.section-headings{
    margin-top: 2rem;
    text-align: center;
}


.answer-messurment-section{
    display: grid;
    grid-template-columns: 1fr auto;
}












.image-upload-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

    align-items: center;
    column-gap: .5rem;
    row-gap: .5rem;
}

.main-image-card{
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.image-upload-card{

    display: grid;
    grid-template-rows: 4;
    grid-template-columns: 1;
    justify-items: center;
    text-align: center;

    background-size: cover;
    background-repeat: none;
    background-position: center;
    box-shadow:inset 0 0 0 2000px rgba(252, 252, 252, 0.4);


    height: auto;
    width: calc(100% - 1rem - 2px);
    margin: .5rem;
    border-radius: .25rem;
    /**border: solid 1px var(--background-gray);*/
    
}


.image-upload-card-text{
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.25px;
    padding: .5rem;

    color: black;
}

.image-upload-card-headline{
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.25px;
    padding: .5rem;

    color: black;
}







.filter-section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
















.questionCard{
    display: flex;
    flex-direction: column;
    width: calc(100% - 4rem -1px);
    margin: .5rem;

    border: solid 1px var(--background-gray);
    border-left: .5rem solid var(--action1);
    border-radius: .5rem;
    overflow: visible;
    background-color: white;
    position: relative;

}

.questionCard::after{
    content: " ";
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    height: .5rem;
    width: calc(1rem + 2px);
    border-radius: .5rem 0rem 0rem .5rem;
    background-color: var(--action1);
}






.recoCard{
    display: flex;
    flex-direction: column;
    width: calc(100% - 4rem -1px);
    margin: .5rem;

    border: solid 1px var(--background-gray);
    border-left: .5rem solid var(--action2);
    border-radius: .5rem;
    overflow: visible;
    background-color: white;
    position: relative;
}

.recoCard::after{
    content: " ";
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    height: .5rem;
    border-radius: .5rem 0rem 0rem .5rem;
    width: calc(1rem + 2px);
    background-color: var(--action2);
}




.topicCard{
    display: flex;
    flex-direction: column;
    width: calc(100% - 4rem -1px);
    margin: .5rem;
    border: solid 1px var(--background-gray);
    border-left: .5rem solid var(--action);
    border-radius: .5rem;
    overflow: visible;
    background-color: white;
    position: relative;
}

.topicCard::after{
    content: " ";
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    border-radius: .5rem 0rem 0rem .5rem;
    height: .5rem;
    width: calc(1rem + 2px);
    background-color: var(--action);
}




.topicCardHeader{
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    justify-content: center;
    align-items: center;
}


.topicCardIcon{
    padding: .5rem;
    height: 2rem;
    width: 2rem;
    background-color: transparent;
}

.topicSubtopicFooter{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: right;
    width: 100%;

    border-top: solid 1px var(--background-gray);
}
.topicSubtopicFooter:hover{
    background-color: var(--action);
    color: white;
    cursor: pointer;
}

















/*for blog post*/
.basic-image{
    width: 100%;
    height: auto;
}














.background-image {

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 20rem;
}



.fuction-icon{
    height: 3rem;
    width: 3rem;
    padding: 0.5rem;
    margin: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;

}


















/* SONG TABLE*/
.song-table{
    width: 100%;
    border: solid black 1px;
    background-color: #1d1d1d;

    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.25px;

}

.song-table th{
    text-align: left;
    padding: .5rem;

}


.song-table tr{
    color: white;
}

.song-table-icon{
    height: 1rem;
    width: 1rem;
    filter: invert();
}
















.pdfPreview {
    width: 210px;
    height: 297px;
    overflow: hidden;
    border: solid green 1px;
  }


.pdfViewer{
    border: solid gray 1px;
    border-radius: 0.5rem;
    margin: .5rem;
    width: calc(100% - 1rem);
    height: 100vh;
}























@media only screen and (min-width: 900px) {

    .card-section{
        grid-template-columns: 1fr 1fr;
        column-gap: 1rem;
        row-gap: 1rem;

    }

    .card-description > h1{
        border-left: solid var(--primary) 5px;
    }

    .icon-line{
        display: flex;
        justify-content: space-evenly;
    }

    .wrapper{
        width: 50%;
        max-width: 90%;
        margin: 0 auto;
    }

    .gridLayout3{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: none;
    }
}







