.wp-list-table.reservations th.column-id { width: 50px; }
.wp-list-table.reservations th.column-reservation_status { width: 100px; text-align: center; }
.wp-list-table.reservations th.column-broker_id { width: 100px; }
.wp-list-table.reservations th.column-reservation_date { width: 100px; }

.wp-list-table.reservations th.column-client_name { width: 150px; }
.wp-list-table.reservations th.column-reservation_time_start { width: 40px; text-align: center; }
.wp-list-table.reservations th.column-reservation_time_end { width: 40px; text-align: center; }
.wp-list-table.reservations th.column-reservation_price {width: 100px; text-align: center;}
.wp-list-table.reservations th.column-actions {width: 200px; text-align: center;}

.wp-list-table.reservations td.column-reservation_price {text-align: center;}

.wp-list-table.reservations .status {
    display: inline-block;
  width: 100%;
  padding: 4px;
  text-align: center;
  border-radius: 8px;
}
.wp-list-table.reservations .status.new-status{
    background-color: #b3ddff;    
}
.wp-list-table.reservations .status.confirmed-status{
    background-color: #ccffda;    
}
.wp-list-table.reservations .status.canceled-status{
    background-color: #f5b3b4;    
}

span[data-tooltip] {
    position: relative;
    cursor: help; 
}

span[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 125%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 999;
}

span[data-tooltip]::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 115%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
}

span[data-tooltip]:hover::after,
span[data-tooltip]:hover::before {
    opacity: 1;
}




#banus-reservations-plugin .button-clear {
    margin: 0 8px;
    color: #91a8bb;
}
