﻿.dropdown-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown-toggler {
    background-color: #5dc1b9;
    color: white;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    font-size: 24px;
    font-weight: bolder;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.dropdown-list {
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    list-style: none;
    margin: 0;
    z-index: 1;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: auto;
}

.dropdown-list li {
    padding: 5px 0;
    font-size: 14px;
}

.dropdown-list li:hover {
    background-color: #f1f1f1;
}

.dropdown-container:hover .dropdown-list {
    visibility: visible;
}

.button-report {
    background-color: #5dc1b9;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-weight: bolder;
    height: 25px;
    width: 25px;
    
}

.button-report p{
    font-size: 24px;
    text-align: center;
}

.btn-excel {
    background-image: url("../Images/Iconos/stein_xls.svg");
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
}

.btn-pdf {
    background-image: url("../Images/Iconos/stein_pdf.svg");
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
}