/* real-time-quotes.css — styles for the real-time quotes tool */
.quotes-controls { margin: 20px 0; }
.control-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.tab-btn { padding: 8px 18px; border: 1px solid #ddd; background: #f8f9fa; border-radius: 6px; cursor: pointer; font-size: 14px; transition: all 0.2s; }
.tab-btn.active { background: #1a1a2e; color: #fff; border-color: #1a1a2e; }
.tab-btn:hover { background: #e8e9ea; }
.tab-btn.active:hover { background: #1a1a2e; }
.refresh-info { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #666; }
.refresh-btn { padding: 5px 12px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; font-size: 13px; }
.quotes-table table { width: 100%; border-collapse: collapse; }
.quotes-table th { background: #1a1a2e; color: #fff; padding: 12px 10px; text-align: left; font-size: 14px; }
.quotes-table td { padding: 10px; border-bottom: 1px solid #eee; font-size: 14px; font-family: monospace; }
.quotes-table tr:hover { background: #f8f9fa; }
.price-up { color: #27ae60; }
.price-down { color: #e74c3c; }
.loading-spinner { text-align: center; padding: 40px; color: #666; }
