td {
    padding: 1%;
    min-width: 30vw;
    text-align: center;
    border: 2px #111;
}

body {
    background-color: #2C2F33;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

.heading {
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(90deg, #5865F2, #7289DA);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.heading:hover {
    transform: scale(1.03);
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5vw 0;
}

button {
    background: linear-gradient(90deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-family: "Roboto", sans-serif;
}

button:hover {
    background: linear-gradient(90deg, #4e5bd4, #5e74d1);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem
}

table {
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    font-size: 1rem;
    width: 90%;
    max-width: 1000px;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
    font-weight: 600;
}

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

tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

input[type="datetime-local"] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
    font-family: "Roboto", sans-serif;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: border 0.3s, box-shadow 0.3s;
    color: #333;
    margin-top: 1rem;
}

input[type="datetime-local"]:hover {
    border-color: #7289DA;
}

input[type="datetime-local"]:focus {
    border-color: #5865F2;
    box-shadow: 0 0 5px rgba(88, 101, 242, 0.6);
}

label {
    color: white;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items:flex-end;
    background-color: #7289DA;
    margin: 2rem 0 0 0;
}

a:link {
    text-decoration: none;
    color: #fff;
}
.footer span {
    text-decoration: none;
    font-size: 1.2rem;
}

/* .footer {
    margin-top: auto;
} */

