* {
    box-sizing: border-box;
    scroll-behavior:smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
}
h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3em;
}
.text-center {
    margin-top: 10px;
    margin-bottom: 10px;
}


.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.table thead th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    padding: 12px;
    text-transform: uppercase;
}

.table th, .table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
.table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}
.table tbody tr:hover {
    background-color: #f1f1f1;
}