.eam-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background-color: rgb(10 37 60 / 20%);
}
.eam-popup-content{
    position: absolute;
    top: 35%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 410px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}
/* .eam-popup::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10 37 60 / 20%);
    z-index: 0;
} */
.eam-popup-header {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
}
#inactive-attendance {
    background-color: rgba(225, 234, 231, 1) !important;
    color: rgba(34, 140, 102, 1) !important;
    margin-right: 24px;
    font-size: 16px;
    font-weight: 500;
}
.eam-popup-header svg{
    min-width: 40px;
}
.eam-popup-content {
    text-align: left;
}
.eam-popup-content label{
padding-bottom: 8px;
font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    margin-left: 55px;
    color: #2D2D2C;
    font-family: Roboto;
}

.eam-btn {
    padding: 8px 16px;
    background-color: #9F248B;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 8px;
    font-size: 16px;
    font-family: Roboto;
}
.eam-btn:hover{
    background-color: #9F248BB2;
    color: #E2E8F0;
}
.eam-close {
    padding: 8px 16px;
    background-color: #f6f7f800;
    color: #9F248B;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #9F248B;
    margin-left: 16px;
    font-family: Roboto;
    font-size: 16px;
}
.eam-close:hover{
    color: #9F248BB2;
    border: 1px solid #9F248BB2;
}
.popup-close {
    padding: 8px 16px;
    background-color: #f6f7f800;
    color: #9F248B;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 8px;
    border: 1px solid #9F248B;
    margin-left: 14px;
    font-family: Roboto;
    font-size: 16px;
}

.eam-btn.eam-btn-inactive {
    padding: 8px 16px;
    background-color: #F6F7F8;
    color: #41566C80;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 8px;
    font-family: Roboto;
}
.dates-event{
    width: 18px !important;
    min-width: auto;
    height: 18px;
    background-color: #F7F7FA;
    border: 1.5px solid;
}
div#attendance-popup .eam-popup-body .input-block {
    display: flex;
    margin-left: 55px;
}
div#attendance-popup .eam-popup-body label{
    margin-left: 16px;
}
/******************cancel-popup ***************/
div#cancel-popup .eam-popup-content{
    text-align: center;
}
div#cancel-popup .eam-popup-header{
    padding-bottom: 0;
}
div#cancel-popup .eam-close{
    margin-top: 8px;
}

.wrap {
    padding: 20px;
    background: #fff;
}

h1 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

table.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

table.wp-list-table th,
table.wp-list-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table.wp-list-table th {
    background: #f1f1f1;
}

table.wp-list-table .delete-attendee {
    color: #d54e21;
    cursor: pointer;
    text-decoration: none;
}

table.wp-list-table .delete-attendee:hover {
    text-decoration: underline;
}


/* General admin page styling */
.wrap {
    padding: 20px;
    background: #fff;
}

.wp-heading-inline {
    font-size: 24px;
    margin-bottom: 20px;
}

.notice {
    margin-bottom: 20px;
}

.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

.wp-list-table th,
.wp-list-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.wp-list-table th {
    background: #f1f1f1;
}

.wp-list-table .button-link {
    color: #d54e21;
    cursor: pointer;
    text-decoration: none;
}

.wp-list-table .button-link:hover {
    text-decoration: underline;
}


/********************success-popup*************/
div#success-popup .eam-popup-content{
    display: flex;
    align-items: center;
    gap: 16px;
}
div#success-popup .eam-popup{
    padding: 17px 16px;
}

div#success-popup .eam-popup-content svg{
    min-width: 42px;
}
div#success-popup .eam-popup-content h5{
    color: #228C66;
    font-size: 16px;
    font-family: Roboto;
}


@media screen and (min-width : 200px) and (max-width: 767.5px) {
.eam-popup{
    width: 100% !important;
}
.eam-popup-content{
    top: 36%;
    left: 50%;
}

}