/* Table Base */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #ffffff;
}

/* Table Border */
table,
table th,
table td {
    border: 1px solid #ddd;
}

/* Table Header */
table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Table Body */
table td {
    padding: 10px;
    color: #333;
}

/* Zebra Striping */
table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Hover Effect */
table tbody tr:hover {
    background-color: #f1f7ff;
    transition: 0.3s ease;
}

/* Responsive Scroll */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}