
/* HEADER */
.navbar-custom {
    background: #d9d9d9;
    padding: 15px 20px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-custom img {
    height: 50px;
}
.navbar-custom h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

/* CONTENU */
#zoneContenuGeneral {
    background: #ffffff;
    padding: 30px;
    min-height: 60vh;
}

/* FOOTER */
.footer-basic {
    padding: 20px 0;
    background: #f8f9fa;
    text-align: center;
    border-top: 1px solid #e1e1e1;
}
.footer-basic p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* CSS pour le stepper */
/* Masquer toutes les étapes sauf la première */
.stepCreationDossier {
    display: none;
}
.stepCreationDossier.active {
    display: block;
}
.progressbar {
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 0;
    padding: 0;
    list-style: none;
}

.progressbar li {
    position: relative;
    flex: 1;
    text-align: center;
    font-weight: 500;
    color: #6c757d;
}

.progressbar li::before {
    counter-increment: step;
    content: counter(step);
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 2px solid #6c757d;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #fff;
    font-weight: bold;
}

.progressbar li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #6c757d;
    top: 17px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child::after {
    content: none;
}

.progressbar li.active {
    color: #0d6efd;
}

.progressbar li.active::before {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: white;
}

.progressbar li.completed::before {
    border-color: #198754;
    background-color: #198754;
    color: white;
}

.progressbar li.active + li::after,
.progressbar li.completed + li::after {
    background-color: #0d6efd;
}
.navigation-buttons {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
}


.file-upload-box {
    border: 2px dashed #dcdcdc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.file-upload-box:hover {
    border-color: #007bff;
}
.file-upload-box i {
    font-size: 40px;
    color: #bbb;
    margin-bottom: 10px;
}
.file-list {
    font-size: 8px;
    max-height: 80px;
}
.file-list li {
    padding: 2px 0;
    border-bottom: 1px solid #eee;
}
.file-list li:last-child {
    border-bottom: none;
}
.choice-card-demande-creation-dossier {
    border: 2px solid #ddd;
    padding: 20px;
    cursor: pointer;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
}
.choice-card-demande-creation-dossier:hover, .choice-card.active {
    border-color: #337ab7;
    background: #f7faff;
}
#overlayLoader {
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(255,255,255,0.8);
    z-index:9999;
    text-align:center;
    padding-top:20%;
    font-size:20px;
    color:#333;
}
@media (min-width: 767px) {
    body {
        font-size: 18px !important;
    }
  .input-group.input-group-sm .form-control,
  .input-group.input-group-sm .input-group-addon,
  .input-group.input-group-sm select {
    height: 42px;
    /* font-size: 16px; */
    padding: 8px 12px;
  }

  .input-group.input-group-sm .fa {
    /* font-size: 18px; */
  }

  .panel-body {
    padding: 15px;
  }

  .btn {
    /* font-size: 16px; */
    padding: 10px 18px;
  }
}

.conteneurInputeFileCreationDossier{
    overflow: auto;
}