body {
    font-family: 'Segoe UI', Verdana, Geneva, Tahoma, sans-serif;
    margin: 32px;
    background: linear-gradient(120deg, #ffecd2 0%, #fcb69f 100%);
}

table {
    border-collapse: collapse;
    width: 70%;
    margin-bottom: 24px;
    background: #fffbe7;
    box-shadow: 0 2px 8px rgba(255, 183, 94, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

th,
td {
    padding: 12px 16px;
    text-align: left;
}

th {
    background: #ffb347;
    color: #fff;
    font-weight: bold;
}

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

tr:nth-child(odd) td {
    background: #fffbe7;
}

form {
    background: #fffbe7;
    padding: 20px;
    border: 2px solid #ffb347;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 1px 6px rgba(255, 183, 94, 0.12);
}

label {
    display: block;
    margin-bottom: 6px;
    color: #ff7e5f;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 12px;
    border: 1.5px solid #ffb347;
    border-radius: 4px;
    background: #fff6e0;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #ff7e5f;
    outline: none;
}

input[type="submit"] {
    background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 1px 4px rgba(255, 126, 95, 0.10);
    transition: background 0.2s;
}

input[type="submit"]:hover {
    background: linear-gradient(90deg, #feb47b 0%, #ff7e5f 100%);
}
