@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300&display=swap');
body{
font-family: 'Almarai', sans-serif;
}

.js-form-file,
.form-file,
.form-select,
.form-email,
.form-text {
  font-family: 'Almarai', sans-serif;
  box-shadow: 5px 5px 5px ;
}
.fieldset-legend {
  color : green;
  font-weight: bold;
  font-size: 22px;
} 
.webform-button--submit,
.button,
.button--primary,
.js-form-submit,
.form-submit,
.cv-validate-before-ajax {
  font-family: 'Almarai', sans-serif;
  font-weight: bold;   /* optionnel */
  font-size: 20px;     /* optionnel */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

/* Effet hover (au survol) */
input.webform-button--submit.button.button--primary.js-form-submit.form-submit.cv-validate-before-ajax:hover {
  background: linear-gradient(135deg, #38b2ac, #2c7a7b); /* inverse les couleurs */
  transform: translateY(-3px); /* effet “remontée” */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Effet focus (accessibilité, quand on clique) */
input.webform-button--submit.button.button--primary.js-form-submit.form-submit.cv-validate-before-ajax:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.6);
}
.messages {
  font-family: 'Almarai', sans-serif;
  font-size: 12px;
}  

.small-cell,
.big-cell,
.col-nom,
.row-data,
.valid,
.ui-dialog-title,
.flex-item,
.webform-ajax-form-wrapper {

  font-family: 'Almarai', sans-serif;
  font-size: 18px;             /* optionnel */
  line-height: 1.8;            /* optionnel */
  unicode-bidi: bidi-override;
  font-variant-numeric: normal;
}
.webform-submission-table {
  font-family: 'Almarai', sans-serif;
  font-weight: bold;
}

.webform-custom-options-buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.webform-custom-options-button {
  flex: 1;
  display: table-cell;
  margin: 0 5px 10px 5px;
  border: 3px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  padding: 10px;
  vertical-align: middle;
  text-align: center;
  color: #666;
}

.webform-custom-options-button .description {
  font-size: .8em;
}

.webform-custom-options-button[data-option-value]:hover {
  border-color: #999;
  color: #333;
}

.webform-custom-options-button[data-option-value]:focus {
  border-color: #999;
  color: #333;
}

.webform-custom-options-button[data-option-value][aria-checked=true] {
  border-color: #0074bd;
  color: #000;
}

.webform-custom-options-button[data-option-value][aria-checked=true]:focus {
  box-shadow: 0 0 5px #0074bd;
}

.webform-custom-options-button[data-option-value][aria-disabled=true],
.webform-custom-options-button[data-option-value][aria-disabled=true]:hover,
.webform-custom-options-button[data-option-value][aria-disabled=true]:focus {
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}

@media (max-width: 600px) {
  .webform-custom-options-buttons {
    display: block;
    margin: 0;
  }

  .webform-custom-options-button {
    display: block;
    margin: 5px 0;
  }
}
