/* Accès rapidee */
.data-nav-box {
background: #f4f9fc;
border-left: 4px solid #3498db;
padding: 1rem 1.5rem;
margin: 2rem 0;
border-radius: 8px;
font-size: 1.05rem;
color: #333;
}

.nav-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 0.5rem;
}

.nav-btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: #c59d5f;
color: #2c2c2c !important;
border-radius: 6px;
text-decoration: none;
font-size: 16px;
transition: background 0.2s ease;
}

.nav-btn:hover {
background-color: #a4803e;
color: white !important;
text-decoration: none !important;
}

.section-title {
  margin-top: 50px;
}

.quote {
  margin-top: 20px;
}

.breakdown-inside {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
  line-height: 1.5;
  text-align: right;
}

.btn-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #c59d5f;
  color: black;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease;
}

.btn-link:hover {
  background-color: #a4803e;
  color: white;
}

.info-box {
  background: #eef6fb;
  border-left: 4px solid #3498db;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  font-size: 1.3rem;
  color: #333;
}

.sales-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  text-align: right;
}

.summary-card {
  flex: 1 1 45%;
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgb(0 0 0 / 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: right;
}

.summary-card-total {
  flex: 1 1 100%;
  background: #d4f0d4;
  font-size: 1.6rem;
  color: #2a7f2a;
  font-weight: bold;
}

.summary-card .breakdown-inside {
  font-size: 1rem;
  margin-top: 0.75rem;
  color: #555;
}

.summary-card h3,
.summary-card p {
  text-align: right;
}

.summary-card-total h3 {
  text-align: right;
  font-weight: bold;
}

.summary-card-total p {
  text-align: right;
  font-size: 24px;
}

.summary-card:hover,
.label-card:hover,
.publishing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.label-grid,
.publishing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.single-column {
  flex-direction: column;
}

.label-card,
.publishing-card {
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.05rem;
  text-align: left;
  margin-bottom: 30px;
}

.label-card {
  border-left: 6px solid #e67e22; /* Orange pour toutes */
}

.publishing-card {
  border-left: 6px solid #2ecc71; /* Vert */
}

.label-card h3,
.publishing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .summary-card {
    flex: 1 1 100%;
    text-align: right;
  }
}
