body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    margin: 0;
    padding: 20px;
    color: #333;
}
h1{
    text-align: center;
    color: white;
}

h2 {
    text-align: center;
    color: white;
}

.container {
    max-width: 1100px;
    margin: auto;
}

form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

form input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background: #2a5298;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

form input[type="submit"]:hover {
    background: #1e3c72;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

th {
    background: #2a5298;
    color: white;
    padding: 12px;
}

td {
    padding: 10px;
    text-align: center;
}

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

a {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    background: #c0392b;
}

@media (max-width: 768px) {
    table {
        font-size: 12px;
    }
}