h1,
h2,
h3,
h4,
h5,
h6 {
    color: #00dbcc;
    text-align: center;
}

h6 {
    color: #120d2e;
    text-align: center;
}

p {
    font-size: 20px;
    color: #120d2e;
}

ul {
    list-style-type: none;
}

.association_valid_div,
.association_valid_text {
    color: #00dbcc;
    justify-content: center;
}

.association_missing_div,
.association_missing_text,
.association_error_div,
.association_error_text {
    color: #ffab40;
    justify-content: center;
}

.nav-wrapper,
.nav-content {
    background-color: #120d2e !important;
}

.basis-card-title {
    font-weight: bold !important;
    color: #120d2e;
}

.card-title {
    color: #00dbcc;
    font-weight: bold !important;
}

.warnings-title {
    color: #ffab40;
    font-weight: bold !important;
}

.label_material_association {
    font-weight: bold !important;
    font-size: 20px;
    color: #00dbcc;
}

.nav-wrapper input[type=text] {
    color: white;
    padding-left: 5px;
}

.btn-primary {
    background-color: #00dbcc;
    color: white;
    font-weight: bold;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    background-color: #00dbcc;
}

.warnings-card {
    background-color: #f5f8fd;
}

.preloader-wrapper {
    position: fixed;
    left: 48.7%;
    top: 48.7%;
    z-index: 9999;
}

td.strikethrough {
    text-decoration: line-through;
    color: #ffab40;
}

.shape_card {
    width: 547px;
    float: center;
    overflow: hidden;
}

.basis_card {
    min-width: 360px;
    min-height: 155px;
}

.fabric_card {
    min-width: 360px;
    min-height: 155px;
}

.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.equal-height .col {
    display: flex;
    flex: 1 0 33%; /* Prend 1/3 de la largeur disponible */
    box-sizing: border-box;
}

.equal-width .row {
    display: flex;
    flex: 1 0 33%; /* Prend 1/3 de la largeur disponible */
    box-sizing: border-box;
}

@media only screen and (max-width: 1080px) {
    .shape_card {
        min-width: 300px;
        width: auto;
    }

    .basis_card {
        min-width: 300px;
        width: auto;
    }

    .fabric_card {
        min-width: 300px;
        width: auto;
    }
}

@media only screen and (max-width: 992px) {
    .tekyn_logo {
        display: block;
        position: absolute;
        left: 50%;
        top: 22%;
        margin-left: -113px !important;
    }
}

#previewImage {
    max-width: 100%;
    max-height: 200px;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: none;
  }

.select-wrapper input.select-dropdown {
    height: 36px;
    line-height: 36px;
    padding: 0 8px;
    margin-top: -6px; /* Ajuste la position de la liste déroulante par rapport au texte */
}

#statusSelect {
    border: none;
    outline: none;
    width: auto;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    background-color: white;
    color: #120d2e;
    text-align: center;
    display: inline-block;
    position: relative;
  }

  #statusSelect option {
    background-color: white;
    color: #120d2e;
  }

  .vertical-align-middle {
    vertical-align: middle;
  }

  .create-button {
    display: inline-block;
    align-items: center;
    padding: 0px 20px;
    background-color: #00dbcc;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    height: 48px;

  }

  .create-button i.material-icons {
    margin-right: 5px;
  }

  .create-button:hover {
    background-color: #00a69c;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination li.active a {
    color: white;
    background-color: #00dbcc;
}

  .pagination li.disabled a {
    cursor: not-allowed;
}

nav.nav-center ul {
    text-align: center;
}
nav.nav-center ul li {
    display: inline;
    float: none;
}
nav.nav-center ul li a {
    display: inline-block;
}

.switch-aligned {
    display: flex;
    align-items: center;  /* Assure que le switch et le texte sont alignés verticalement */
    margin-top: 10px;     /* Ajoute un peu d'espace au-dessus du switch */
  }

  .switch-label {
    margin-right: 20px;   /* Ajoute de l'espace entre le texte et le switch */
    font-weight: 500;     /* Optionnel : rend le texte un peu plus visible */
  }

  .switch label {
    font-size: 1rem;      /* Ajuste légèrement la taille du texte "Oui" et "Non" */
  }

  .switch input[type="checkbox"] + .lever {
    width: 40px;          /* Ajuste la largeur du switch */
    height: 20px;         /* Ajuste la hauteur du switch */
  }

  .switch input[type="checkbox"] + .lever:before,
  .switch input[type="checkbox"] + .lever:after {
    width: 18px;          /* Taille du levier (le rond) */
    height: 18px;
    top: 1px;             /* Ajuste la position du levier à l'intérieur du switch */
  }

  .switch input[type="checkbox"]:checked + .lever:after {
    left: 22px;           /* Ajuste la position du levier à droite */
  }