/**EmbedQuiz plugin styles**/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

/**Auth**/
.embedquiz-auth-button{
    color: black;
    background-color: white;
    display: inline-block;
    padding: 8px 12px 8px 12px;
    border-radius: 8px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.embedquiz-auth-container{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}
.embedquiz-auth-title{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
}
.embedquiz-auth-text{
    font-size: 14px;
    margin-bottom: 12px;
}
/**Quizzes**/
.embedquiz-tab-buttons-left{
    display: inline-block;
    width: 45%;
    margin-bottom: 12px;
}
.embedquiz-tab-buttons-right{
    display: inline-block;
    width: 45%;
    float: right;
    text-align: right;
    margin-bottom: 12px;
}
@media only screen and (max-width: 600px) {
    .embedquiz-tab-buttons-left{
        width: 100%;
    }
    .embedquiz-tab-buttons-right{
        width: 100%;
        float: none;
        text-align: left;
    }
  }
.embedquiz-tab-buttons-right .embedquiz-button{
    margin-right: 8px;
    padding-left: 8px;
}
.embedquiz-tab-buttons-right .embedquiz-button-emoji{
    margin-right: 0px;
}
.embedquiz-add-quiz{
    color: black;
    background-color: white;
    display: inline-block;
    padding: 8px 12px 8px 12px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-decoration: none;
    border: none;
    text-align: center;
    border-radius: 22px;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}
.embedquiz-container{
    background-color: white;
    border-radius: 8px;
    padding-top: 16px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}
.embedquiz-page-title{
    font-weight: 500;
    font-size: 32px;
    color: #464646;
    margin-bottom: 16px;
    margin-top: 8px;
}
.embedquiz-list-container{
    width: 100%;
    overflow-x: auto;
}
.embedquiz-quiz-list{
    display: table;
    border-collapse: collapse; 
    width: 100%;
    min-width: 680px;
}
.embedquiz-quiz-list-item{
   width: 100%;
   display: table-row;
   border-bottom: 1px solid rgb(242, 242, 242);
}
.embedquiz-quiz-list-item:last-child{
    border-bottom: 0;
}
.embedquiz-quiz-list-column{
    display: table-cell;
    padding-top: 8px;
    padding-bottom: 8px;
}
.embedquiz-quiz-title{
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.embedquiz-quiz-type{
    text-align: center;
}
.embedquiz-quiz-shortcode{
    text-align: center;
}
.embedquiz-quiz-action{
    text-align: right;
    padding-right: 2px;
}
.embedquiz-copy-button{
    cursor: copy;
}
.embedquiz-button{
    color: black;
    background-color: white;
    display: inline-block;
    padding: 8px 12px 8px 12px;
    border-radius: 8px;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.embedquiz-button:hover{
    color: black;
}
.embedquiz-button-emoji{
    display: inline-block;
    margin-right: 4px;
}
/**Empty panel**/
.embedquiz-empty-panel{
    padding: 16px;
    padding-top: 8px;
    padding-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
    text-align: center;
}
.embedquiz-empty-title{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
}
.embedquiz-empty-text{
    font-size: 14px;
    margin-bottom: 12px;
}
/*Footer text*/
.embedquiz-plugin-footer{
    padding: 8px;
    text-align: center;
}