/* Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #007bff;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

tr:hover {
    background: #f1f1f1;
    transition: 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    th, td {
        padding: 10px;
        font-size: 14px;
    }
}
