/* css/export.css */

/* Styling for the export dropdown & button */
#exportSelect {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  color: #333;
  cursor: pointer;
}
#exportBtn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background: #2ecc71;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
#exportBtn:hover {
  background: #27ae60;
}
