﻿.btn-agregar {
    background-color: #B08438;
    color: white;
    padding: 7px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 10px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

    .btn-agregar:hover {
        background-color: #9c7127;
    }

.custom-btn:focus {
    outline: 2px solid orange !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.25) !important;
}

.custom-btn:active:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 165, 0, 0.5) !important;
}

/* ----------------------BARRA DE BUSQUEDA-------------------------------- */

.datatable-search {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 10px;
}

.search-input {
    padding: 4px 8px;
    font-size: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 30px;
    width: 180px;
}

.search-button {
    background-color: #F4F4F4;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 10px;
    height: 30px;
    cursor: pointer;
    transition: background-color 0.2s;
    border: 1px solid #ccc;
}

    .search-button:hover {
        background-color: #e9ecef;
    }


/* ---------------------- ACTION BUTTONS -------------------------------- */

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 8px; /* espacio entre los botones */
}

.btn{
    font-size: 13px;
}