#currency-switcher-container {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
    white-space: nowrap;
}

#currency-display {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-transform: inherit;
    transition: all 0.2s ease;
    line-height: inherit;
    height: 100%;
    white-space: nowrap;
    border: inherit;
}

#currency-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 3px 3px;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10000;
}

.currency-option {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #0f2041;
    font-size: 13px;
    text-transform: uppercase;
    background-color: transparent !important;
    border-left: 2px solid #fff;
    font-weight: 700;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
    font-family: inherit;
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background: #d4a37a !important;
    color: white !important;
}

#currency-text {
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

.currency-arrow {
    margin-left: 5px;
    font-size: 10px;
    display: flex;
    align-items: center;
}