html,
body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
}

/* ADMIN PAGE */

.admin-page{
    background:#ececec;
    min-height:100vh;
    overflow-y:auto;
}

/* DISPLAY PAGE */

.display-page{
    background:#ececec;
    color:#21105e;
}

/* ADMIN PAGE HEADER */

.admin-page header{
    background:#21105e;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* DISPLAY PAGE HEADER */

.display-page header{
    background:#21105e;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* SHARED TITLE STYLE */

.title{
    font-weight:900;
    color:#ffffff;
    letter-spacing:2px;
    line-height:1;
    text-align:center;
}

/* ASSESSMENT SEAT ID MANAGER */

.admin-page .title{
    font-size:60px;
}

/* TESTING ROOM */

.display-page .title{
    font-size:50px !important;
}


/* GRID */

.grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    padding:30px;
}

.card{
    background:#f1f1f1;
    border:3px solid #21105e;
    border-radius:12px;
    padding:12px;
}
/* SEAT */
.card h3{
    font-size:25px;
    color:#21105e;
    text-transform:uppercase;
    text-align:center;
    margin:0 0 10px 0;
    font-weight:900;
}

.card textarea{
    width:100%;
    box-sizing:border-box;

    text-align:center;

    font-size:22px;
    font-family:Arial,sans-serif;
    font-weight:700;

    height:80px;

    padding:15px 10px;

    resize:none;
    overflow:hidden;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:anywhere;

    line-height:1.2;
}

.card button{
    width:100%;
    padding:8px;
    margin-top:8px;
    font-size:15px;
    font-weight:900;
    height:40px;
}

.called{
    background:#2daa43 !important;
    color:#ffffff !important;
}

/* TESTING ROOM TABLE */

.board{
    width:100%;
}

.board table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.board th{
    background:#8dbfc0;
    color:#21105e;
    font-size:35px;
    font-weight:900;
    height:60px;
    border:1px solid #21105e;
}
/* TABLE testing seat size word*/
.board td{
    color:#21105e;
    border:1px solid #21105e;
    text-align:center;
    vertical-align:middle;
    font-size:32px;
    font-weight:900;
    height:91px;
    padding:0;
    overflow:hidden;
}

.pink{
    background:#edf5ff;
}

.green{
    background:#f2fff7;
}

/* INTERVIEW HEADER */

.section-title{
    background:#21105e;

    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#ffffff;

    font-size:45px;
    font-weight:900;

    line-height:1;
    letter-spacing:2px;
    text-align:center;
}

/* INTERVIEW TABLE */

#interviewBoard{
    width:100%;
}

#interviewBoard table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}
/* room1 room 2 etc */
#interviewBoard th{
    background:#8dbfc0;
    color:#21105e;
    font-size:30px;
    font-weight:900;
    height:30px;
    border:1px solid #21105e;
}
/*TABLE interview room */
#interviewBoard td{
    color:#21105e;
    border:1px solid #21105e;
    text-align:center;
    vertical-align:middle;
    font-size:30px;
    font-weight:900;
    height:10px;
    padding:0;
    overflow:hidden;
}

/* ID VALUES */

.id-value{
    font:inherit;
}

/* NAME VALUES - TESTING ROOM */

.name-value{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    font-size:20px;
    font-weight:900;
    line-height:1.05;

    padding:4px;
    box-sizing:border-box;

    text-align:center;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:anywhere;
}

/* NAME VALUES - INTERVIEW ROOM */

#interviewBoard .name-value{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:100%;

    font-size:20px;
    font-weight:900;
    line-height:1.05;

    padding:4px;
    box-sizing:border-box;

    text-align:center;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:anywhere;
}

#interviewBoard .id-value{
    font:inherit;
}

/* POPUP */

.popup{
    position:fixed;
    inset:0;
    background:#ececec;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#21105e;
    z-index:9999;
}

.hidden{
    display:none;
}

.applicant-call{
    font-size:90px;
    font-weight:900;
    line-height:1;
    text-align:center;
    color:#21105e;
    margin:10px 0;
}
.seat-call{
    font-size:120px;
    font-weight:900;
    line-height:1;
    text-align:center;
    display:block;
    width:100%;
}

.instruction{
    font-size:50px;
    font-weight:900;
    margin-top:20px;
}
.applicant-call-id{
    font-size:180px;
    font-weight:900;
    line-height:1;
    text-align:center;
    color:#21105e;
    margin:10px 0;
}

.applicant-call-name{
    font-size:90px;
    font-weight:900;
    line-height:1;
    text-align:center;
    color:#21105e;
    margin:10px 0;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:anywhere;
}