/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 24/04/2025, 09:22:09 PM
    Author     : taticosof
*/

.btn-venta {
  margin-bottom: 10px;
}

.x_filtro_cuentas {
  margin: 20px;
}


.filter-select-container {
    position: relative;
    display: inline-block;
    width: 200px; /* Ajusta según necesites */
}

.filter-select-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.filter-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    background: white;
    z-index: 1000;
}

.filter-select-option {
    padding: 8px;
    cursor: pointer;
}

.filter-select-option:hover, .filter-select-option.selected {
    background-color: #f0f0f0;
}

.filter-select-no-results {
    padding: 8px;
    color: #999;
    font-style: italic;
}


