table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    color: #5a3c2a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    border: 1px solid #a32525;
    text-align: center;
    padding: 15px;
}

th {
    background: linear-gradient(to right, #e77d11, #a32525);
    color: white;
    font-size: 18px;
}

tr:nth-child(even) {
    background-color: #fff5e1;
}

tr:hover {
    background: #ffe2b3;
    transition: background 0.3s ease;
}
