body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 80%;
    margin: auto;
}

.table-wrapper {
    display: flex;
    justify-content: center;
}

.custom-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.custom-table th {
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    padding: 10px;
}

.custom-table td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table input[type="text"] {
    width: 90%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}
