@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
h1 {
    text-align: center;
    width: 100%;
    background-color: gray;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: lightgray;
    padding: 0;
}

#main {
    background-color: rgb(130, 196, 255);
    padding: 25px;
}

button {
    background-color: rgb(0, 136, 255);
    border: blue solid 1px;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    color: black;
}

button:hover {
    background-color: rgb(0, 136, 255, 0.5);
}

.progress-bar {
    width: 100%;
    height: 20px;
    background-color: lightgray;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: green;
    transition: width 0.3s;
}
#loading {
    display: none;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height:180px;
    background-color: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

#instructionbuttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid black;
    font-style: bold;
}
table td, table th {
    border: 1px solid black;
    padding: 5px;
    font-style: bold;
}

.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
