
/* Floating Quote Button */
#qbp-floating-quote {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#qbp-quote-toggle {
  background-color: #00254D;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#qbp-quote-toggle:hover {
  background-color: #004080;
}

/* Drawer Styles */
.qbp-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.qbp-drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  background: #fff;
  z-index: 9999;
  box-shadow: -3px 0 8px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

.qbp-drawer-header {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  background: #00254D;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qbp-drawer-body {
  padding: 15px;
  overflow-y: auto;
  flex-grow: 1;
}

.qbp-drawer-footer {
  padding: 15px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.qbp-cta-btn {
  background-color: #00254D;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.qbp-cta-btn:hover {
  background-color: #003366;
}

.qbp-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.qbp-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.qbp-item-info {
  flex-grow: 1;
}

.qbp-title {
  font-weight: 600;
  font-size: 14px;
  color: #00254D;
  text-decoration: none;
}

.qbp-title:hover {
  text-decoration: underline;
}

.qbp-sku {
  font-size: 12px;
  color: #666;
}

.qbp-remove {
  margin-top: 5px;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}

.qbp-remove:hover {
  background: #c0392b;
}

/* Admin Page Enhancements */
.qbp-admin-container {
  padding: 20px;
}

.qbp-admin-container h1 {
  margin-bottom: 20px;
}

.qbp-admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.qbp-admin-table th, .qbp-admin-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.qbp-admin-table th {
  background-color: #f5f5f5;
}

.qbp-status-dropdown {
  font-size: 14px;
  padding: 4px;
}

.qbp-notes {
  width: 100%;
  min-height: 80px;
  padding: 8px;
  font-size: 14px;
}

/* === Drawer Quote Form Styling === */
#qbp-customer-form.qbp-form {
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  font-family: 'Inter', sans-serif;
  color: #00254D;
}

#qbp-customer-form h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#qbp-customer-form input[type="text"],
#qbp-customer-form input[type="email"],
#qbp-customer-form input[type="tel"],
#qbp-customer-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  transition: all 0.2s ease;
}

#qbp-customer-form input:focus,
#qbp-customer-form textarea:focus {
  border-color: #00254D;
  background-color: #fff;
  outline: none;
}

#qbp-customer-form textarea {
  resize: vertical;
  min-height: 100px;
}

#qbp-customer-form label {
  font-size: 0.85rem;
  color: #444;
  display: block;
  margin-bottom: 14px;
}

#qbp-customer-form input[type="checkbox"] {
  margin-right: 6px;
  vertical-align: middle;
}

#qbp-final-submit {
  background-color: #00254D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

#qbp-final-submit:hover {
  background-color: #003a75;
}

#qbp-form-msg {
  font-size: 0.875rem;
  color: #007c32;
  margin-top: 10px;
}