.profile-dropdown {
    position: absolute;
    right: 5px;
    bottom: 68px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 96%;
    display: none;
    z-index: 1000;
    /* padding: 8px 0; */
}

[data-theme="dark"] .profile-dropdown {
    background: #2a2a2a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.dropdown-header {
    display: flex;
    justify-content: space-between;
    padding: 0px 16px;
    border-bottom: 1px solid #eee;
}

[data-theme="dark"] .dropdown-header {
    border-bottom: 1px solid #444;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-email {
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

[data-theme="dark"] .dropdown-email {
    color: #999;
}

.dropdown-section {
    border-bottom: 1px solid #eee;
}

[data-theme="dark"] .dropdown-section {
    border-bottom: 1px solid #444;
}

.dropdown-item {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

[data-theme="dark"] .dropdown-item {
    color: #e0e0e0;
}

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

[data-theme="dark"] .dropdown-item:hover {
    background-color: #333;
}

.dropdown-item .beta-tag {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

[data-theme="dark"] .dropdown-item .beta-tag {
    background: #444;
}

.dropdown-item .coming-soon-tag {
    background: #e0e0e0;
    color: #666;
    padding: 2px 6px;
    border-radius: 16px;
    font-size: 8px;
    margin-left: auto;
    font-weight: 500;
}

[data-theme="dark"] .dropdown-item .coming-soon-tag {
    background: #444;
    color: #999;
}

.dropdown-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #999;
}

[data-theme="dark"] .dropdown-item.disabled {
    color: #666;
}

.dropdown-item.disabled:hover {
    background-color: transparent;
}

[data-theme="dark"] .dropdown-item.disabled:hover {
    background-color: transparent;
}

.dropdown-item.disabled i {
    color: #ccc;
}

[data-theme="dark"] .dropdown-item.disabled i {
    color: #555;
}

.dropdown-item i {
    margin-right: 12px;
    color: #666;
    font-size: 16px;
}

[data-theme="dark"] .dropdown-item i {
    color: #999;
}

.pro-badge {
    background: linear-gradient(135deg, #c93891 0%, #0147ff 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.usage-cost {
    margin-left: auto;
    font-weight: 600;
    color: #666;
}

[data-theme="dark"] .usage-cost {
    color: #999;
}

.profile-settings {
    margin-left: 10px;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.profile-settings:hover {
    background-color: #eee;
    color: #333;
}

[data-theme="dark"] .profile-settings {
    color: #999;
}

[data-theme="dark"] .profile-settings:hover {
    background-color: #333;
    color: #fff;
}

/* Version info styling */
.dropdown-item.version-info {
    cursor: default;
    opacity: 0.8;
}

.dropdown-item.version-info:hover {
    background-color: transparent;
}

[data-theme="dark"] .dropdown-item.version-info:hover {
    background-color: transparent;
}

.version-label {
    font-size: 0.85rem;
    color: #333;
    margin-right: 8px;
}

[data-theme="dark"] .version-label {
    color: #e0e0e0;
}

.version-number {
    font-size: 0.8rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    color: #666;
    font-weight: 500;
    margin-left: auto;
}

[data-theme="dark"] .version-number {
    color: #999;
}