/* Export Dropdown Menu */
.export-dropdown {
    position: relative;
    display: inline-block;
}

.export-btn {
    position: relative;
    padding-right: 25px;
}

.export-btn::after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #666;
}

.export-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.export-dropdown:hover .export-menu {
    display: block;
}

.export-menu a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s;
}

.export-menu a:hover {
    background-color: #f8f9fa;
}

.export-menu a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.export-menu a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Dark mode styles for export dropdown */
html.dark-mode .export-menu {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

html.dark-mode .export-menu a {
    color: var(--text-color);
}

html.dark-mode .export-menu a:hover {
    background-color: #333;
}