body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;

}

h1 {
    text-align: center;
    color: #333;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input, select, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #ed4933 !important;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 3%;
}

button:hover {
    background-color: #1d8c92;
}



.chart-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    min-height: 100%; 
    min-width: 450px;
}

p.status {
    text-align: center;
    font-weight: bold;
}

p.status.success {
    color: green;
}

p.status.error {
    color: red;
}

.temoignage-card {
    border: 1px solid #ddd;
    border-left: 5px solid #ed4933;
    padding: 15px;
    border-radius: 5px;
    background: #fafafa;
    transition: transform 0.2s, box-shadow 0.2s;
}
.temoignage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.temoignage-prenom {
    font-weight: bold;
    color: #ed4933;
}
.temoignage-date {
    font-size: 0.85em;
    color: #555;
    margin-left: 10px;
}
.temoignage-desc {
    margin-top: 5px;
    font-style: italic;
    color: #333;
}


/* INDEX2.html css */

/* Container */
#typeform-like {
  max-width: 550px;
  margin: auto;
  text-align: left;
}

/* Each step */
.step {
  display: none;
  opacity: 0;
  transition: opacity 0.6s;
}

.step.active {
  display: block;
  opacity: 1;
}

/* Navigation buttons */
.button-nav {
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
}

.progress {
  margin-bottom: 2em;
  height: 6px;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 6px;
  width: 0%;
  background: #ed4933;
  transition: width 0.4s;
}

