/* ===== RDV Page Special CSS ===== */

.row-rdv {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  margin-top: 30px;
}

.col-rdv-left {
  flex: 0 0 55%;
  max-width: 55%;
}

.col-rdv-right {
  flex: 0 0 40%;
  max-width: 40%;
  border: 1px solid #ccc;
  padding: 25px;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.consulta-container {
  margin-top: 30px;
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 100%;
}

.consulta-container p, .consulta-container span {
  font-size: 13px;
  line-height: 1.5;
}

.consulta-container .telefono a,
.consulta-container .whatsapp a {
  font-weight: 600;
  color: #25d366;
  text-decoration: none;
}

.consulta-container .telefono a:hover,
.consulta-container .whatsapp a:hover {
  text-decoration: underline;
}

.consulta-container .teams span {
  color: #6264a7;
  margin-left: 28px;
  display: inline-block;
}

.btn-paypal {
  display: inline-block;
  background-color: #0070ba;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.btn-paypal:hover {
  background-color: #004b86;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .row-rdv {
    flex-direction: column;
  }
  .col-rdv-left,
  .col-rdv-right {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* Coloană formular RDV */
.col-rdv-right {
  max-width: 100%;
}




/* Lista formularului: eliminăm float și span */
.col-rdv-right ul.comm-list,
.col-rdv-right ul.comm-list li,
.col-rdv-right ul.comm-list figure {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Label-uri deasupra input-urilor */
.col-rdv-right ul.comm-list label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Input-uri și textarea ocupă toată lățimea */
.col-rdv-right ul.comm-list input,
.col-rdv-right ul.comm-list textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Spațiere între câmpuri */
.col-rdv-right ul.comm-list li {
  margin-bottom: 15px;
}

/* ===== Formular - Aliniere câmpuri la stânga ===== */
.comm-list .comm-field,
.comm-list .comm-area {
    width: 100%;         /* câmpurile ocupă tot spațiul disponibil */
    box-sizing: border-box;
    display: block;
    margin: 0 0 10px 0;  /* spațiu între câmpuri */
}

.comm-list li {
    list-style: none;
    margin-bottom: 10px;
}

.comm-list label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.send-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #4caf50;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.send-btn:hover {
    background-color: #45a049;
}
