/* Travelwing Quote v2 - Frontend CSS */

.twq-dashboard { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; max-width: 1000px; margin: 0 auto; padding: 20px; }
.twq-dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.twq-dashboard-header h2 { margin: 0; font-size: 24px; }

.twq-btn { display: inline-block; padding: 10px 16px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fff; color: #475569; font-size: 14px; cursor: pointer; text-decoration: none; }
.twq-btn:hover { background: #f8fafc; }
.twq-btn-primary { background: #f59e0b; border-color: #f59e0b; color: #fff; }
.twq-btn-primary:hover { background: #d97706; color: #fff; }
.twq-btn-delete { color: #ef4444; }

.twq-empty { text-align: center; padding: 40px; background: #f8fafc; border-radius: 12px; color: #64748b; }

.twq-quote-list { display: flex; flex-direction: column; gap: 12px; }
.twq-quote-card { display: flex; justify-content: space-between; align-items: center; padding: 20px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; }
.twq-quote-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.twq-quote-info { flex: 1; }
.twq-quote-info h3 { margin: 0 0 8px; font-size: 18px; }
.twq-quote-info p { margin: 0 0 4px; font-size: 14px; color: #64748b; }
.twq-prices { color: #10b981; font-weight: 600; }
.twq-quote-actions { display: flex; gap: 8px; }

.twq-login-required, .twq-error { padding: 40px; text-align: center; background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; color: #991b1b; }
.twq-login-required { background: #fef3c7; border-color: #fcd34d; color: #92400e; }
.twq-notice { background: #f1f5f9; border-radius: 8px; padding: 16px; margin-bottom: 16px; }
