html, body {
    font-family: Poppins, Helvetica, Arial, sans-serif;
    margin:0;
    padding:0;
    height:100vh;
    overflow:hidden;
}
.noborder{
    background: transparent;
    border: 0 !important;
}
.noborder:hover{
    background: transparent;
    border: 0 !important;
}
footer{    
    height: 10%;
    vertical-align: middle;
    display: flex;
    overflow: hidden;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.eventLabel {
  height: 22px;
  width: fit-content;
  vertical-align: middle;
  color: white;
  display: flex;
  box-sizing: border-box;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 12px;
  align-items: center;
  overflow: hidden;
  padding: 10px;
  margin: 15px;
  white-space: nowrap;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

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

table th {
    background-color: #f8f9fa;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.pagination button:hover {
    background-color: #0056b3;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    table th,
    table td {
        padding: 8px;
    }

    button {
        font-size: 14px;
    }
}