
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4);
    margin: 0;
    padding: 0;
    color: #2c2c2c;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

h1, h2 {
    color: #8a2be2;
    margin-top: 30px;
    font-weight: 900;
}

form {
    background-color: white;
    padding: 30px 40px;
    margin: 40px auto;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    max-width: 500px;
    width: 90%;
}

input, select {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #e85d4f;
}

a {
    display: inline-block;
    margin-top: 20px;
    color: #c94dd9;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 95%;
    max-width: 900px;
    border-collapse: collapse;
    margin: 30px auto;
    background-color: white;
    box-shadow: 0 5px 14px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

th {
    background-color: #f9c2ff;
    color: #222;
    font-weight: 600;
}

tr:hover {
    background-color: #fff0f5;
}
