.dropdown-btn-wrapper-5cafe22f {
    position: relative;
    display: inline-block;
    width: auto;
}

.dropdown-btn-5cafe22f {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.dropdown-btn-icon-5cafe22f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-btn-icon-5cafe22f svg {
    height: 1em;
    width: 1em;
}

.dropdown-menu-5cafe22f {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    min-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-menu-5cafe22f.is-open {
    display: flex;
    animation: fadeInDown-5cafe22f 0.2s ease forwards;
}

.dropdown-item-5cafe22f {
    display: block;
    text-decoration: none;
    padding: 15px 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

@keyframes fadeInDown-5cafe22f {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}