@import url('../../resources/css/app.css');
@import url('../../resources/css/reset.css');
@import url('_global.css');

table {
    width: 100%;
    border-collapse: collapse;
}

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

th {
    background-color: var(--primary-text);
    color: #fff;
    font-weight: bold;
    text-align: center;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

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

tbody tr:hover {
    background-color: #e0f7f4;
    cursor: pointer;
}

table {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
}
