/* Bouton principal */
.quoteo-button-welcome, .quoteo-button-register {
  background-color: #f5bc00;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 30px;
}
.quoteo-button-welcome:hover, .quoteo-button-register:hover {
  background-color: #f5ae00;
}
.quoteo-button-register{
  margin-bottom: 30px;
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
}

/* Accordéon */
.quoteo-accordion .quoteo-accordion-content {
  display: none;
  padding: 15px 0;
}
.quoteo-accordion .quoteo-accordion-title {
  width: 100%;
  text-align: left;
  background: #f7f7f7;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}
.quoteo-accordion .quoteo-accordion-item.active .quoteo-accordion-content {
  display: block;
}
.quoteo-accordion .quoteo-accordion-item.active .quoteo-accordion-title {
  background: #e9e9e9;
}

/* Dashboard */
#quoteo-ca-label {
  margin: 20px 0;
}
.quoteo-dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.quoteo-dashboard-card {
  flex: 1 1 260px;
  min-width: 240px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(80, 80, 120, 0.08), 0 1.5px 4px rgba(80, 80, 120, 0.05);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow 0.2s;
}
.quoteo-dashboard-card:hover {
  box-shadow: 0 4px 24px rgba(80, 80, 120, 0.13), 0 2px 8px rgba(80, 80, 120, 0.08);
}
.quoteo-dashboard-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #22223b;
  letter-spacing: 0.01em;
}
.quoteo-dashboard-card small {
  color: #8d99ae;
  font-size: 0.95em;
  font-weight: 400;
}
.quoteo-dashboard-card .quoteo-main-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: #22223b;
  margin: 8px 0 12px 0;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.quoteo-dashboard-card .quoteo-main-value .quoteo-percent {
  font-size: 1rem;
  font-weight: 500;
  color: #e63946;
  background: #ffe5e9;
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 8px;
}
.quoteo-dashboard-card .quoteo-main-value .quoteo-percent-up {
  color: #2ecc40;
  background: #e7ffe5;
}
.quoteo-dashboard-card .quoteo-sub {
  font-size: 1.05rem;
  color: #636363;
  margin-bottom: 6px;
}
.quoteo-dashboard-card b {
  font-weight: 600;
  color: #22223b;
}
.quoteo-dashboard-card .quoteo-dashboard-bar {
  margin: 18px 0 0 0;
  height: 8px;
  background: #f4f4f8;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.quoteo-dashboard-card .quoteo-dashboard-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #ffe066 0%, #ffd60a 100%);
  border-radius: 6px;
  transition: width 0.4s;
}
.quoteo-dashboard-card .quoteo-dashboard-gauge {
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quoteo-dashboard-card .quoteo-gauge-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd60a;
  margin: 12px 0 0 0;
}
.quoteo-dashboard-card .quoteo-gauge-label {
  font-size: 1rem;
  color: #636363;
  margin-top: 4px;
}

/* Progress bar */
.quoteo-progress-bar-bg {
  background: #eee;
  width: 300px;
  height: 30px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}
.quoteo-progress-bar-inner, .quoteo-orders-progress-bar-inner {
  background: #0073aa;
  color: #fff;
  width: 0;
  height: 100%;
  text-align: center;
  line-height: 30px;
  transition: width 0.4s;
}

/* Warning */
.quoteo-warning {
  color: #e63946;
  font-weight: 600;
  margin-left: 10px;
}

@media (max-width: 900px) {
  .quoteo-dashboard-cards {
    flex-direction: column;
    gap: 16px;
  }
  .quoteo-dashboard-card {
    min-width: 0;
    width: 100%;
  }
}