body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f1f1;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    }
h1 {
    color: #d35400;
    }
h2 {
    color: #d35400;
    }
input, select, button {
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    
    }
button {
    background-color: #d35400;
    color: white;
    cursor: pointer;
    border: none;
    }

button:hover {
    background-color: #e67e22;
    }
.table-container {
    display: flex;
    justify-content: center;
    width: 100%;
    }
table {
    width: auto;
    max-width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
table, th, td {
    border: 1px solid #ddd;
    }
th, td {
    padding: 12px 15px;
    text-align: left;
    }
th {
    background-color: #ff9f43;
    color: white;
    font-weight: bold;
    }
td {
    background-color: #fff;
    }
tr:nth-child(even) td {
    background-color: #f1f1f1;
    }
a {
    text-decoration: none;
    color: #d35400;
    font-weight: bold;
    }
a:hover {
    color: #5a2e04;
    }
.navigation {
    margin: 20px;
    }
.navigation a {
    text-decoration: none;
    padding: 10px 15px;
    background: #3498db;
    color: white;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
    }
.navigation a:hover {
    background: #2980b9;
    }
