.tools-toggle-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.tools-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
}

.tools-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px;
    margin: 0 20px;
    display: none;
    border: 1px solid #e9ecef;
    z-index: 1000;
}

.tools-dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--primary);
    border-radius: 5px;
    transition: background 0.2s ease;
    margin: 2px 0;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item i.fa-file-pdf {
    color: #e74c3c;
}

.dropdown-item i.fa-heartbeat {
    color: #27ae60;
}