/* Portrait Dropdown Menu Styles */
.portrait-menu-container {
    position: relative;
    display: inline-block;
}

.portrait-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

.portrait-dropdown.show {
    display: block;
}

.portrait-dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.portrait-dropdown-item:last-child {
    border-bottom: none;
}

.portrait-dropdown-item:hover {
    background: #f5f5f5;
}

.portrait-dropdown-item:active {
    background: #e8e8e8;
}
