
        .dropdown-container {
            position: relative;
            display: inline-block;
        }

        .dropdown-button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 16px;
            background: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.2s;
            width: 300px;
            /* max-width: 300px; */
        }

        .dropdown-button:hover {
            background-color: #f3f4f6;
        }


        .dropdown-image {
            width: auto;
            height: 32px;
            border-radius: 50%;
        }

        .dropdown-text {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            flex-grow: 1;
        }

        .dropdown-arrow {
            width: 16px;
            height: 16px;
            color: #6b7280;
            transition: transform 0.2s;
        }

        .dropdown-arrow.open {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            left: 0;
            margin-top: 8px;
            min-width: 224px;
            max-width: 300px;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 4px 0;
            z-index: 50;
            display: none;
        }

        .dropdown-menu.open {
            display: block;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 12px 16px;
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.15s;
            text-align: left;
        }

        .dropdown-item:hover {
            background-color: #f9fafb;
        }