@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html {
    scroll-behavior: smooth;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-size: 18px;
    line-height: 30px;
    color: var(--text-color);
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    background: #ebf8ff;
}
/******************************************************************************/
.evnt-admin-table {
    background-color: #fff;
    width: 100%;
    border-collapse: collapse;
}

.evnt-admin-table th,
.evnt-admin-table td {
    border: 1px solid #ffd1d1;
    padding: 5px 5px;
    text-wrap: wrap;
}

.evnt-admin-table th {
    background-color: #d1532b;
    color: #fff;
    font-weight: 600;
    text-align: left;
}

.evnt-admin-table td {
    color: #000000;
    font-weight: 400;
}

.evnt-admin-table th,
.evnt-admin-table td {
    font-size: 13px;
    line-height: normal;
}

.evnt-admin-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.evnt-admin-table td {
    vertical-align: top;
}

.evnt-admin-table .whatsapp-icon {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0px 5px;
}

.evnt-admin-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    padding: 5px 10px;
    background-color: #ffe3da;
}
.evnt-admin-menu li {
    list-style: none;
}
.evnt-admin-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    color: #000000;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.evnt-admin-menu a:hover {
    background-color: #b13f1c;
    color: #fff;
}
.evnt-admin-menu a.active {
    background-color: #b13f1c;
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .evnt-admin-menu a {
        font-size: 14px;
    }
}
