.vin-message{
  padding:24px;

      font-family: Poppins, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: rgb(36, 36, 36);

    font-weight: 300;
 }


/* #vin-input{
  text-transform: uppercase;
} */
.vin-verification-result {
  text-align: center;
  padding: 20px;
}

.vin-result-message {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.text-red {
  color: #c0392b;
  font-weight: bold;
}

.text-green {
  color: #27ae60;
  font-weight: bold;
}

.btn-new-request {
  background-color: #004080;
  color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.btn-new-request:hover {
  background-color: #0059b3;
}

/* Style pour le champ VIN */
#vin-input {
  text-transform: uppercase;
  /* font-family: monospace; */
  letter-spacing: 1px;
}

/* Styles pour la validation */
.vin-error {
  color: #dc3545;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.vin-input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 5px rgba(220, 53, 69, 0.3) !important;
}

.form-item--error label {
  color: #dc3545;
}

.form-item--error .description {
  color: #dc3545;
}

/* Style pour les états de validation */
/* #vin-input:valid {
  border-color: #28a745;
} */

/* #vin-input:invalid {
  border-color: #dc3545;
} */

/* Style pour le compteur */
.vin-count {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  display: block;
  text-align: right;
  /* position: absolute;
  right: 0;
  bottom:8px */
}

.vin-paste-warning {
  background-color: #fff3f3;
  border: 1px solid #ff0000;
  padding: 5px;
  border-radius: 3px;
  font-size: 12px;
}

/* Style pour le bouton désactivé */
input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Indicateur de chargement */
.vin-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.new-request{
      height: 56px;
    padding: 15px 85px;
    border-radius: 3px;
    background-color: #008db3;
    border: 1px solid #008db3;
    margin-left: auto;
    color: white;
    display: block;
}
#vin-verification-wrapper .js-form-item{
  position: relative;
}


.vin-pending-users-page {
  padding: 20px;
}

.vin-stats-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vin-stat-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 200px;
  text-align: center;
  border-top: 4px solid #0073b6;
  transition: transform 0.2s ease;
}

.vin-stat-card:hover {
  transform: translateY(-2px);
}

.vin-stat-card.highlighted {
  border-top-color: #e62600;
  background: #fcf4f2;
}

.vin-stat-card h3 {
  margin: 0 0 10px 0;
  font-size: 2.5em;
  color: #333;
  font-weight: bold;
}

.vin-stat-card p {
  margin: 0;
  color: #666;
  font-size: 1em;
  font-weight: 500;
}

.vin-export-actions {
  margin-bottom: 20px;
}

.button--primary {
  background: #0073b6;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.button--primary:hover {
  background: #005a8e;
  color: white;
  text-decoration: none;
}

.vin-pending-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.vin-pending-table th {
  background: #0073b6;
  color: white;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  border: none;
  font-size: 14px;
}

.vin-pending-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
}

.vin-pending-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.vin-pending-table tr:hover {
  background-color: #e3f2fd;
}

.vin-pending-table tr:last-child td {
  border-bottom: none;
}

.vin-empty-message {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  color: #666;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .vin-stats-wrapper {
    flex-direction: column;
  }

  .vin-stat-card {
    min-width: auto;
  }

  .vin-pending-table {
    font-size: 12px;
  }

  .vin-pending-table th,
  .vin-pending-table td {
    padding: 10px 12px;
  }
}


.error-field {
  border: 2px solid #e62600 !important;
  background-color: #fcf4f2;
}

.field-validation-message {
  /* margin-top: 5px;
  font-size: 0.9em;
  min-height: 20px; */
}

.validation-message.error {
  color: #e62600;
  background:none;
  padding: 0;
  border-radius: 4px;
  border: none;
  top: -8px;
  position: relative;
  font-size: 11px;
}

.validation-message.success {
  color: #325e1c;
  background-color: #f3faef;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #77b259;
  margin: 5px 0;
}


/* Bordures vertes si valide */
.is-valid {
  border: 2px solid #28a745 !important;
  background-color: #eaffea;
  transition: all 0.3s ease;
}

/* Bordures rouges si erreur */
.is-invalid,
.error-field {
  border: 1px solid #dc3545 !important;
  background-color: #ffecec;
  transition: all 0.3s ease;
}
.validated-field{
      border-color: #28a745 !important;
}
/* Message de validation */
.validation-message.success {
  color: #28a745;
}

.validation-message.error {
  color: #dc3545;
}

.field-validation-message {
  /* font-size: 0.9rem;
  margin-top: 2px; */
}


.bloc_alert_vin{
  background-color: #F7F3F3;
  padding: 16px 59px 16px 16px;
  color: #242424;
  font-size: 20px;
  line-height: 1.5;
   box-shadow: 6px 4px 14px 0 rgba(0, 0, 0, 0.08);
   position: absolute;
   top: 46px;
   left: -80px;
   width: 460px;
   max-width: 100%;
   border-radius: 10px;
}

.gap-bloc_alert_vin{
  display: flex;
  gap: 32px;
  align-items: center;
}
.gap-bloc_alert_vin img {
  width: 75px;
  height: auto;
  min-width: 75px;
}
 @media screen and (max-width: 1499.98px) {
.bloc_alert_vin{font-size: 18px;}
 }
 @media screen and (max-width: 1199.98px) {
      .bloc_alert_vin{
         top: 20px;
        left: 20px;
        font-size: 16px;
        padding: 16px;
    }
    .gap-bloc_alert_vin{
  display: flex;
  gap: 24px;
}
      .gap-bloc_alert_vin img {
      width: 42px;
      height: auto;
      min-width: 42px;
      }
    }
