:root {
    --vert: #00a7b7;
}

span.txt_rose_introduction {
    color: var(vert);
}

span.training_experience_title {
    color: var(bs-text-rose);
}

.container-login-Niv1 {
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    width: 700px;
    height:100%;
    margin:0 auto;
    border:1px solid red;
}

.container-login-Niv2 {
    display: flex;
    flex-direction: row;
    width: 700px;
    margin: 0 auto;
    border: 1px solid red;
}

#categoryTable {
    width: 80%;
    margin: 0 auto;
    border:1px solid green;
}

form section {
    display: flex;
    margin-bottom: 30px;
}

form section > div {
    padding-inline: 20px;
}

form section label {
    font-weight: bold;
}

.container-img-adduser img {
    width: 580px;
    height: auto;
    
}

#pills-params section {
    display:flex;
}

/* Hauteur minimale pour les textarea */
.ck-editor__editable {
    min-height: 100px;
    /* Par exemple, une hauteur minimale de 300px */
}



.inline-form {
    display: inline;
    /* Garde le formulaire sur une seule ligne */
    margin: 0;
    /* Enlève les marges du formulaire */
    padding: 0;
    /* Enlève les espacements internes du formulaire */
}

.inline-form button {
    background: none;
    /* Enlève le style du bouton */
    border: none;
    /* Enlève la bordure */
    color: red;
    /* Change la couleur du texte du bouton */
    cursor: pointer;
    /* Ajoute un pointeur au passage de la souris */
    padding: 0;
    /* Enlève le padding pour que le bouton soit en ligne */
}

.deleteButton {
    border:0;
    padding:0;
}

/* Pour ajouter de l'espace et assurer l'alignement */
.group-icon .input-group .input-group-text {
    background-color: transparent;
    border: none;
}

#iconPreview i {
    font-size: 1.5em;
    /* Ajustez la taille de l'icône si besoin */
}

/* Assurez-vous que cela s'applique uniquement aux colonnes de description */
#categoriesTable td.description-cell {
    word-wrap: break-word;
    white-space: normal;
    max-width: 200px;
    /* Limitez la largeur si nécessaire */
}

/* Conteneur du switch */
.switch-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-top:20px;
    /* Ajustez en fonction du conteneur parent */
}

/* Switch agrandi */
#softskill_status, #hardskill_status, #training_status, #category_status, #tool_status {
    transform: scale(1.5);
    /* Ajuste l’échelle : augmenter pour agrandir le switch */
}

#statusLabel {
    padding-left: 20px;
    font-size: 15px;
}

#softskillsTable td:nth-child(2) {
    text-align: center;
    font-size: 20px;
}

.btnNewLine {
    background-color: orange;
    color: black;
    border: 1px solid orange;
}

#categoriesTable td:nth-child(4), #categoriesTable td:nth-child(5) {
    text-align: center;
    
}

.title-blocs-training {
    padding: 10px 15px;
}

.title-blocs-training span{
    font-weight: bold;
    font-size: 1.3em;
}

/* Icone sur la liste des formations permettant l'affichage des métiers associés */
#trainingsTable .tooltip-icon {
    position: relative;
    cursor: pointer;
    display: inline-block;
    color: #007bff;
    /* Couleur de l'icône */
}

#trainingsTable .tooltip-popup {
    display: none;
    position: absolute;
    top: 120%;
    /* Décalage vertical */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    /* Fond noir */
    color: #fff;
    /* Texte blanc */
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 1000;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#trainingsTable .tooltip-popup p {
    margin: 0;
    padding: 2px 0;
}

#trainingsTable .tooltip-icon:hover .tooltip-popup {
    display: block;
    /* Affiche le popup au survol */
}

#pills-outils .container {
    max-width: 100% !important;
}

.quillEditor {
    height: 300px;
}

.ql-editor {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.dragging {
    cursor: url('/assets/images/big-cross.cur'), crosshair;
}