# -*- coding: utf-8 -*-

.Select-menu-outer {display : block !important;}
.dash-table-container .dropdown {position: static;}
.Select-menu-outer {
     --accent : black;
}
.Select-arrow {
	--accent: black;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 1); /* Bright yellow, full opacity */
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 0, 0); /* Fade out the yellow */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0); /* Return to no shadow */
    }
}
.yada.sleeping {
    position: fixed;
    right: 20px;
    bottom: 20px;
    height: 70px;
    width: 70px;
    border-radius: 50%; /* Make the element a circle */
    animation: pulse 2s ease-in-out 10; /* Apply the pulsing effect */
}


.accordion-button {
    font-size: 16px;
}
.accordion-button {
    font-size: 16px;
}

.accordion-button {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.accordion-button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}

.dash-table-tooltip {
    font-size: 10px;
}

