/* Container pour aligner les boutons Devis */
.devis-btn-container {
  display: flex;
  justify-content: center;
  margin: 0;
}

/* Style pour le bouton Devis dans le tableau */
.devis-btn-fix {
  border: 2px solid #28a745;
  color: #28a745;
  font-weight: bold;
  border-radius: 8px;
  background: #fff;
  padding: 0.5rem 1.5rem;
}
/* Styles extraits de index.html pour remplacer les styles inline de la modale devis */
#devisModal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
}
#devisModalContent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  background: #181c2b;
  color: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px #0005;
  text-align: center;
}
.devisModal-inner {
  padding: 1.5rem 1rem 1.2rem 1rem;
  position: relative;
}
#closeDevisModal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffd700;
  cursor: pointer;
}
.devis-prestation-label {
  margin-bottom: 1.2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
#prestationSelect {
  width: 95%;
  margin-bottom: 1.3rem;
  padding: 0.6rem;
  border-radius: 0.7rem;
  border: 1.5px solid #7c4dff;
  background: #2d1a3a;
  color: #ffd700;
  font-size: 1.05rem;
}
.devis-send-label {
  margin-bottom: 1.1rem;
  font-weight: bold;
}
.devis-btn-gmail {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 9px 18px;
  background: #ea4335;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.08rem;
  transition: background 0.2s;
}
.devis-btn-outlook {
  display: inline-block;
  margin: 8px 0 0 0;
  padding: 9px 18px;
  background: #0072c6;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.08rem;
  transition: background 0.2s;
}
.devisModal-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,20,44,0.92);
  z-index: -1;
}
