/* Used by:
 * - control panel
 */
#top_controls {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: inherit;
    padding: 1rem;
    border: 0px solid white;
    margin: 0 auto;
    min-width: 95%;
    max-width: 95%;
    /* border-bottom: 1px solid #23192b; */
}

.control_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.button_row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0rem;
}

/* MULTI-PURPOSE */
.centered_message {
    text-align: center;
    opacity: 1;
}

.fade_in {
    opacity: 0;
    animation: fade_in 0.5s ease forwards;
    /* Matches ANIMATION_DURATION in JS */
}

@keyframes fade_in {
    to {
        opacity: 1;
    }
}

#entry_selector {
    display: block;
    text-align: center;
}

.selector_wrapper {
    display: flex;
    justify-content: center;
}
