._buttons_header{
    margin-bottom: 10px;
}

table .row-options {
  padding: 2px 0 0;
  position: relative;
  left: -9999em;
  font-size: 12px;
  color: #cbd5e1;
}

[dir="rtl"] table .row-options {
  left: initial;
  right: -9999em;
}

table tr:hover td .row-options,
.mobile table tr td .row-options {
  position: static;
}
select.input-sm{
    height: auto !important;
}
.dataTables_paginate .pagination{
    justify-content: flex-end;
}
.dataTables_wrapper .col-md-6:first-child {
  display: flex;
  align-items: center; /* alinha verticalmente */
  gap: 10px; /* espaçamento entre os elementos */
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dt-buttons {
  float: none; /* remove o float antigo */
  margin: 0;
}



/**** kanban styles ****/
.kanban-board {
    display: flex;
    gap: 1rem;
}
.kanban-column{
    width: 300px; 
    min-width: 280px;
    position: relative;   
}
.kanban-cards-container{
    padding: 10px;
    position: relative;
}
.kanban-card{
    position: relative;
    cursor: move;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.kanban-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}
.kanban-card.dragging {
    opacity: 0.5;
}
.kanban-cards-container.drag-over {
    background-color: #e8f5e9 !important;
}
.kanban-card .panel-body{
    position: relative;
}
.kanban-card-actions{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.kanban-card:hover .kanban-card-actions{
    opacity: 1;
}
.kanban-card-actions a{
    color: #84c7ec;
    font-size: 14px;
    padding: 4px 6px;    
    border-radius: 3px;
    display: inline-block;
    transition: all 0.2s ease;
}
.kanban-card-actions a:hover{
    color: #0d6efd;   
    text-decoration: none;
    transform: scale(1.1);
}

input.form-control[type='color'] {
    display: block;
    width: auto !important;
    height: auto !important;
    min-width: 20px;
    min-height: 20px;
    aspect-ratio: 1/1;
    box-sizing: content-box !important;
    padding: 10px;
}