table {
    page-break-inside: auto;
    border-collapse: collapse;
    width: 100%;
    
    font-size: 11.33px;
}
tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
td {
    text-align: left;
    
    display: flex;
    align-items: center;
}
.table-header {
    min-height: 30px;

    font-weight: 500;
    
    border-bottom: 1px solid #e7e7e7;
}
.table-row {
    min-height: 45px;

    border-bottom: 1px solid #e7e7e7;

    cursor: pointer;
}


#headerTable .utilities .input {
    height: 40px; 
    margin: 0; 
    margin-left: 20px; 
    width: 260px; 
    display: flex;
    flex-direction: row; 
    justify-content: left; 
    align-items: center;
}

#headerTable .utilities .btn-simple {
    margin-left: 20px;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    #list {
        margin-top: 45px;
    }

    .table-header {
        padding-bottom: 5px;
    }

    .table-row {
        padding-top: 7.5px;
    }

    .table-row, .table-header {
        flex-direction: column;
        align-items: flex-start;

        position: relative;
    }

    .table-row .btn-list {
        display: none;
    }

    #headerTable {
        flex-wrap: wrap;
    
        padding: 20px;
    }

    #headerTable .utilities {
        width: 100%;
        position: relative;

        right: 0;
    }

    #headerTable .utilities .btn-simple {
        margin-left: 0px;
    }

    #headerTable .utilities .input {
        width: 100%;
    }
}

.table-row:hover {
    background-color: #e7e7e7;
}

.table-footer {
    height: 45px; 
    border-radius: 0px 0px 5px 5px;
    
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-info, .pagination-info-resolved {
    margin-left: 7.5px;
    margin-right: 7.5px;

    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-buttons button, .pagination-buttons-resolved button {
    background-color: transparent;
    
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 21.5px;

    margin: 0;
    
    cursor: pointer;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-buttons button:hover, .pagination-buttons-resolvida button:hover {
    background-color: #e7e7e7;
}
.pagination-buttons button span, .pagination-buttons-resolvida button span {
    font-size: 25px;
}
.col {
    margin: 5px 20px;
    
    position: relative;
}

.btn-list {
    width: 35px;
    height: 35px;
    
    border-radius: 50%;
    
    color: #000;
    cursor: pointer;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-list:hover {
    background-color: #ccc;
}
.actionsDiv {
    width: 200px;
    
    border: 1px solid #e7e7e7;

    background-color: #fff;

    border-radius: 5px;
    
    display: none;
    
    position: absolute;
    
    top: 20px;
    right: 20px;
    
    z-index: 98;
}
.items-container {
    padding: 5px 0;
}
.actionsDiv .item {
    width: 100%;
    height: 35px;
    
    font-size: 14px;
    color: #000;

    cursor: pointer;
    
    display: flex;
    justify-content: left;
    align-items: center;
}
.actionsDiv .item:hover {
    background-color: #f7f7f7;
}
.actionsDiv .item .icon {
    font-size: 23px;
    
    margin: 0 10px 0 20px;
}
.actionsDiv .item .text {
    font-size: 14px;
    font-weight: 600;
}
#content {
    width: 100%;
    height: 100%;
}

.utilities {
    height: 55px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 25px;
}

.utilities .btn-add {
    margin-left: 10px;
}

.filter {
    width: 260px;
    height: 101vh;
    position: fixed; /* Fixa a posição da div */
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-left: 1px solid #e7e7e7;
    padding: 15px;
    display: none; /* Inicialmente oculto */
    flex-direction: column;
}

.head-filter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.75px;
}

.date-range-container {
    display: none;
    justify-content: space-between;
    width: 100%;
}

.tag-container {
    display: flex;
    flex-wrap: wrap; /* Mantenha wrap aqui */
    align-items: center;
    width: 100%;
    height: auto;
}

.service-tag {
    padding: 5px; 
    border-radius: 5px; 
    color: #000; 
    background-color: #e9e9e9; 
    margin: 2.5px;
    margin-top: 5px;
    font-size: 12px;
    
    display: flex;
    align-items: center;
}
.service-tag:hover {
    background-color: #d9d9d9;
}
.service-tag span {
    font-size: 9px;
    color: #000;
    cursor: pointer;
    margin-right: 5px;
}
.list-circle-button {
    width: 30px;
    height: 30px;
    
    color: #000;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;

    cursor: pointer;
}

.list-circle-button:hover {
    background-color: #ccc;
}