body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f3e6ff, #e6f3ff);
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}
.container {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
h2 {
    text-align: center;
    color: #6a11cb;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 0.95em;
}
th {
    background-color: #6a11cb;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
}
input, select, textarea {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
}
.button-container {
    margin-top: 15px;
    text-align: center;
}
button {
    margin: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b6b, #6b6bff);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
button:hover {
    transform: scale(1.05);
}
.red { color: red; }
.green { color: green; }
.description-container {
    margin-top: 20px;
}
textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-top: 5px;
}
.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-size: 1em;
    color: #555;
    font-weight: bold;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 10px;
}