/* style.css */
body {
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: auto;
}

h1 {
    text-align: center;
}

input {
    padding: 10px;
    margin: 10px 0;
    width: 30%;
}

button {
    padding: 10px 20px;
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

#modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: none;
}

#modalContent {
    background: white;
    padding: 20px;
    border-radius: 5px;
}

#loadingOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    color: white;
    text-align: center;
    padding-top: 20%;
    font-size: 26px;
    font-weight: 500;
    padding-left: 250px;
    padding-right: 250px;
}