.buscador-context {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 4000;
}

.buscador-context__body {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 4px;
    background: white;
    border: 1px solid black;
    border-width: 3px 1px;
    width: 600px;
    height: 50vh;
}

.buscador-content__results {
    border-radius: 4px;
    margin-top: .8rem;
    overflow: auto;
    height: 100%;
    border: 1px solid #CCC;
}
.buscador-content__results tr:hover td {
    background: #f5f5f5 !important;
}
.buscador-content__results tr.selected td {
    background: #ccc !important;
}
.buscador-content__results th  {
    font-weight: bold;
    text-align: left;
}
