*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

.table-container{
    width:100%;
    max-width:1000px;
    margin:30px auto;
}

.table-header{
    display:flex;
    justify-content:flex-end;
    margin-bottom:15px;
}

.table-header input{
    width:250px;
    padding:10px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
}

.table-header input:focus{
    border-color:#0d6efd;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

thead{
    background:#FCFCFC;
    color:#0D0C0C;
}

th,td{
    padding:12px;
    border:1px solid #ddd;
    text-align:left;
}

tbody tr:nth-child(even){
    background:#f8f9fa;
}

tbody tr:hover{
    background:#eef5ff;
}

.table-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    flex-wrap:wrap;
    gap:10px;
}

#pagination{
    display:flex;
    gap:5px;
}

#pagination button{
    padding:7px 12px;
    border:none;
    background:#eee;
    cursor:pointer;
    border-radius:5px;
}

#pagination button.active{
    background:#0d6efd;
    color:#fff;
}

#pagination button:hover{
    background:#0b5ed7;
    color:#fff;
}

#pagination button:disabled{
    opacity:.10;
    cursor:not-allowed;
}


