.angie-nav-wrapper {
    display: flex;
    width: 100%;
}

.angie-align-left .angie-nav-wrapper { justify-content: flex-start; }
.angie-align-center .angie-nav-wrapper { justify-content: center; }
.angie-align-right .angie-nav-wrapper { justify-content: flex-end; }

.angie-nav-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.angie-nav-container.angie-width-stretched {
    width: 100%;
    display: flex;
}

.angie-nav-container.angie-width-stretched .angie-nav-trigger-btn {
    width: 100%;
}

.angie-nav-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    background-color: #042660;
    color: #FFFFFF;
    font-family: inherit;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    outline: none;
}

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

.angie-btn-icon svg {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.angie-dropdown-panel {
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-sizing: border-box;
    --angie-anim-speed: 300ms;
    transition: opacity var(--angie-anim-speed) ease, visibility var(--angie-anim-speed) ease, transform var(--angie-anim-speed) ease;
}

/* Width modes */
.angie-dropdown-panel.angie-width-mode-btn {
    width: 100%;
    left: 0;
}

.angie-dropdown-panel.angie-width-mode-full {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.angie-dropdown-panel.angie-width-mode-col {
    width: var(--angie-col-width, 100%);
    left: var(--angie-col-offset, 0);
}

/* Align positions */
.angie-dropdown-panel.angie-pos-below-left {
    left: 0;
}

.angie-dropdown-panel.angie-pos-below-right {
    right: 0;
    left: auto;
}

.angie-dropdown-panel.angie-pos-center {
    left: 50%;
    transform: translateX(-50%);
}

/* Animations styles */
.angie-anim-fade {
    transform: translateY(0);
}
.angie-dropdown-panel.angie-anim-fade.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.angie-anim-slide {
    transform: translateY(15px);
}
.angie-dropdown-panel.angie-anim-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.angie-anim-scale {
    transform: scale(0.9);
}
.angie-dropdown-panel.angie-anim-scale.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
}

.angie-anim-flip {
    transform: perspective(400px) rotateX(-15deg);
    transform-origin: top center;
}
.angie-dropdown-panel.angie-anim-flip.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: perspective(400px) rotateX(0deg);
}

.angie-anim-none.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Search Bar Wrapper */
.angie-menu-search-wrapper {
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.angie-menu-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.angie-menu-search-input:focus {
    border-color: #e11823;
}

/* Nav Menu Lists */
.angie-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.angie-menu-item {
    margin: 0;
    padding: 0;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.angie-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, padding 0.2s ease;
    border-radius: 6px;
}

.angie-item-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.angie-item-icon {
    display: inline-flex;
    align-items: center;
}

.angie-item-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.angie-item-badge {
    background-color: #e11823;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    text-transform: uppercase;
}

.angie-item-count {
    font-size: 11px;
    color: #888888;
    background: #f1f1f1;
    padding: 1px 6px;
    border-radius: 10px;
}
