@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html,body{
    height: 100%;
    width: 100%;
    place-items: center;
    background-color:#eaecfd;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

#data-table {
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    position:relative;
    top:50px;
}

#data-table th,
#data-table td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

#data-table th {
    background-color: #f2f2f2;
}

/* Alternating row colors */
#data-table tbody tr:nth-child(even) {
    background-color: #faf3f3;
}


/* Status styles */
#data-table tbody td.status {
    color: #1f10e7;
    font-weight: bold;
}

/* No data found styling */
#data-table tbody td.colspan {
    text-align: center;
}



button {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

button:active {
    background-color: #3e8e41;
}

.button-group {
    margin-top: 20px;
    max-width: 100%;
    width:500px;
    position:relative;
    left:35.49%;
    top:16px;
}

.button-group button {
    margin: 0 10px;
}
.button-group button:hover {
    background-color: skyblue;
}

/* Style for the active button */
.active-button {
    background-color: skyblue;
}

/* Hover effect for the buttons */
.button-group button:hover {
    background-color: lightblue;
}