body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 20px;
}

h2 {
    color: #333;
}

table {
    width: 95%;
    margin: auto;
    background: white;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    text-align: center;
}

input, select, textarea {
    width: 95%;
    padding: 5px;
    font-size: 13px;
    border: 1px solid #aaa;
    border-radius: 4px;
}

button {
    padding: 5px 10px;
    font-size: 13px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

a {
    color: #dc3545;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}
