﻿.table-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table-actions {
    margin-bottom: 15px;
    text-align: right;
}

    .table-actions .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

table.dataTable {
    width: 100%;
    border-collapse: collapse;
}

    table.dataTable th,
    table.dataTable td {
        padding: 12px;
        text-align: left;
    }

    table.dataTable thead th {
        background-color: #6C757D !important;
        color: #ffffff;
        font-weight: 600;
        border-bottom: 2px solid #dee2e6;
    }

    table.dataTable tbody tr:hover {
        background-color: #f1f3f5;
    }

    table.dataTable tbody td {
        vertical-align: middle;
    }

/* Estilizando o campo de busca do DataTables */
.dataTables_filter {
    margin-bottom: 10px;
}

    .dataTables_filter input {
        padding: 6px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        width: 200px;
    }
