/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}
.flatpickr-date, .flatpickr-wrapper {
  width: 100%;
}





.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 24px;
}

.app-brand-logo.demo svg {
  width: 35px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 72px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}
.welcome-card {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.welcome-card h5 {
  font-weight: bold;
  color: #343a40;
}
.welcome-card p {
  font-size: 1.1rem;
  color: #495057;
}
.btn-custom {
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}
.btn-update {
  background-color: #28a745;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
}
.illustration {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}


.container-data {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.container-data  .step {
  display: none;
}
.step.active {
  display: block;
}
.progress {
  height: 8px;
  border-radius: 5px;
}
 /*financial-score*/
 .container-score {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: auto;
}
h3 {
  color: #333;
  display: inline-block; /* Permet de garder le titre sur la même ligne */
}
h4 {
  color: #555;
}
.header-container {
  display: flex; /* Utilise Flexbox pour aligner les éléments */
  justify-content: space-between; /* Espace entre le titre et le bouton */
  align-items: center; /* Aligne verticalement le contenu */
}
.export-btn {

  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.export-btn:hover {
  background-color: #0056b3;
}
.indicator-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.indicator-table th, .indicator-table td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: left;
}
.indicator-table th {
  background-color: #f1f1f1;
}
.indicator-table th, .indicator-table td.type, .indicator-table td.value {
  color: black; 
}
.score-green {
  color: green;
}
.score-orange {
  color: orange;
}
.score-red {
  color: red;
}
.badge {
  padding: 0.5em 1em;
  border-radius: 0.5em;
  font-size: 0.9em;
}

.navbar-collapse {
  background-color: #FFFFFF !important; /* Blanc opaque */
}
/* Corriger l'affichage du dropdown sur mobile */
@media (max-width: 992px) {
  .dropdown-menu {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 80vh !important;
    margin: 0 auto !important;
    overflow-y: auto !important;
    border-radius: 0 0 0.375rem 0.375rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
  }
} 
/*onboarding designµ*/
.container-bienvenue {
  display: d-none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  margin: auto;
  
  background: rgba(255, 255, 255, 0.6);
  
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Progress bar styling */
.export-container .progress-section {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.export-container .progress-text {
  font-size: 14px;
  color: #333;
  margin-right: 10px;
}

.export-container .progress-bar {
  flex: 1;
  height: 5px;
  background-color: #e0e5f0;
  border-radius: 10px;
  overflow: hidden;
}

.export-container .progress-fill {
  height: 100%;
  background-color: #3c7af9;
  border-radius: 10px;
}

.export-container .progress-percentage {
  font-size: 14px;
  color: #333;
  margin-left: 10px;
}

/* Form styling */
.export-container {
background-color: white;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
width: 100%;
max-width: 1000px;
padding: 30px;
margin: 0 auto;
}

.export-container h2 {
font-size: 22px;
font-weight: 600;
margin-bottom: 15px;
color: #222;
}

.form-description {
color: #666;
font-size: 15px;
margin-bottom: 25px;
}

.options-container {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 30px;
}

.option-card {
position: relative;
border: 1px solid #e0e5f0;
border-radius: 8px;
overflow: hidden;
}

.option-card:hover {
border-color: #bbc4d6;
}

.option-card input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
}

.option-label {
display: flex;
align-items: center;
padding: 15px;
cursor: pointer;
}

.option-icon {
width: 40px;
height: 40px;
background-color: #ebf3ff;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 15px;
}

.green-icon {
background-color: #e6f7ed;
}

.green-icon i {
color: #28a745 !important;
}

.red-icon {
background-color: #ffebee;
}

.red-icon i {
color: #dc3545 !important;
}

.option-icon i {
font-size: 18px;
color: #3c7af9;
}

.option-text {
flex: 1;
}

.option-title {
font-weight: 500;
margin-bottom: 5px;
}

.option-description {
font-size: 14px;
color: #666;
}

.radio-custom {
width: 20px;
height: 20px;
border: 2px solid #ddd;
border-radius: 50%;
margin-left: 15px;
position: relative;
}

.option-card input[type="radio"]:checked + .option-label {
background-color: #f7fbff;
}

.option-card input[type="radio"]:checked + .option-label .radio-custom {
border-color: #3c7af9;
}

.option-card input[type="radio"]:checked + .option-label .radio-custom::after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 10px;
height: 10px;
background: #3c7af9;
border-radius: 50%;
}

/* Form navigation */
.form-navigation {
display: flex;
justify-content: space-between;
}

.btn {
padding: 10px 20px;
border-radius: 8px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-secondary {
background-color: white;
border: 1px solid #ddd;
color: #333;
}

.btn-secondary:hover {
background-color: #f5f5f5;
}

.btn-primary {
background-color: #ebf3ff;
border: none;
color: #3c7af9;
}

.btn-primary:hover {
background-color: #d9e8ff;
}

.btn-primary:not(:disabled) {
background-color: #3c7af9;
color: white;
}

/* Responsive design */
@media (max-width: 768px) {
.options-container {
  gap: 10px;
}

.option-label {
  padding: 12px;
}

.option-icon {
  width: 32px;
  height: 32px;
}
}

@media (max-width: 480px) {
.export-container {
  padding: 20px;
}

.option-description {
  font-size: 12px;
}

.btn {
  padding: 8px 15px;
  font-size: 14px;
}
}

/*onboarding result*/

.confirmation-container {
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f7ed;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
}

.success-icon i {
  font-size: 40px;
  color: #28a745;
}

.profile-summary {
  margin: 30px 0;
  text-align: left;
}

.profile-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.item-number {
  width: 30px;
  height: 30px;
  background-color: #e0e8ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #3c7af9;
  margin-right: 15px;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
}

.item-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.item-value {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 3px;
}

.item-description {
  color: #666;
  font-size: 14px;
}

.conclusion-text {
  color: #666;
  margin: 25px 0;
  line-height: 1.6;
}

/* Ajustement du bouton principal */
.btn-primary:not(:disabled) {
  padding: 12px 25px;
  font-size: 16px;
}
.bg-light-blue {
  background-color:rgb(168, 226, 245); /* Bleu clair */
}

.bg-blue {
  background-color: #007bff; /* Bleu */
}

.bg-purple {
  background-color: #6f42c1; /* Violet */
}

.bg-gold {
  background-color: #ffd700; /* Or */
}

.bg-secondary {
  background-color: #6c757d; /* Gris */
}

.text-dark {
  color: #343a40; /* Couleur sombre */
}

.text-white {
  color: #ffffff; /* Couleur blanche */
}
.user-profile-img-container {
  width: 120px; /* Taille ajustée */
  height: 120px;
  border-radius: 50%; 
  overflow: hidden; 
  position: relative; 

}

.user-profile-img {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}



label[for="photo"] {
  background-color: rgba(0, 0, 0, 0.6); 
  border-radius: 50%; 
  width: 40px; 
  height: 40px;
  display: flex; 
  justify-content: center;
  align-items: center;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  cursor: pointer;
}
.currency-symbol {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: gray;
  pointer-events: none; 
}  
.vendor-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8A2BE2;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.vendor-link span {
  font-size: 1.8em;
  transition: transform 0.3s ease;
}

.vendor-link:hover {
  text-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
  transform: translateX(3px);
}

/*waiting-accept-client*/

.confirmation-container-client {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.confirmation-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: #000;
}

.confirmation-subtitle {
  color: #5a5a5a;
  font-size: 16px;
  margin-bottom: 25px;
}

.confirmation-message {
  color: #333;
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.5;
}

.purple-text {
  color: #6f42c1;
  font-weight: 500;
}

.features-grid {
  display: flex;
  flex-wrap: wrap; /* Permet aux éléments de passer à la ligne */
  justify-content: space-between;
  margin: 30px 0;
}

.feature {
  width: 100%; /* Par défaut, occuper toute la largeur */
  text-align: center;
  padding: 10px; /* Ajout d'un padding pour espacer les fonctionnalités */
}

@media (min-width: 768px) {
  .feature {
    width: 33%; /* 3 fonctionnalités par ligne sur les écrans moyens et plus */
  }
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 15px;
  color: #495057;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
  color: #000;
}

.feature-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.3;
}

.email-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5a5a;
  font-size: 16px;
  margin-top: 30px;
}

.email-icon {
  color: #28a745;
  margin-right: 10px;
  font-size: 20px;
}

/*show-company*/

.modal-content {
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  background: #fff;
}

.company-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.company-name {
  color: #111;
  font-weight: 600;
  margin-top: 1rem;
}

.info-grid {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.2s;
}

.info-item:hover {
  transform: translateY(-2px);
}

.info-item i {
  font-size: 1.5rem;
  color: #0070f3;
}

.info-item label {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.info-item p {
  margin: 0;
  color: #111;
  font-weight: 500;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

@media (max-width: 768px) {
  .info-grid {
      padding: 1rem;
  }
  
  .info-item {
      padding: 0.75rem;
  }
}

/*test-diag-finance*/
.d-none {
  display: none;
}

/*list-quiz-client*/
.quiz-status {
  font-weight: bold;
}

.quiz-status.completed {
  color: green;
}

.quiz-status.not-completed {
  color: red;
}

.quiz-link {
  text-decoration: none;
  color: #007bff;
  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-transform: uppercase;
}

.quiz-link:hover {
  text-decoration: underline;
}
/*show-quiz-client*/
.progress-quiz {
  height: 15px;
}

/*services-prestataire-exportateur*/
.sub-section-title {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
}

.sub-section-title h2 {
  font-size: 1.5rem;
  
  color: #1E3A8A; 
  margin: 0; 
}
.sub-section-title span {
  font-size: 1.5rem;
  color: #8A2BE2; 
  margin: 0; 
}

.sub-section-title::after {
  content: "";
  width: 700px; 
  height: 3px;
  background: linear-gradient(to right, #8A2BE2, #FFFFFF); 
  border-radius: 3px;
  display: block; 
}
/*partners*/
.partner-img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: auto;
}

  .swiper-button-prev,
.swiper-button-next {
  opacity: 0;  
  pointer-events: none;  
}
/*customer*/

/*on-boarding-test-vendor*/
.btn-next {
  float: right;
}

/*profile-vendor*/
.timeline {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #0d6efd;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #0d6efd;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
}

.timeline-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.timeline-sector {
margin-left: 0.5rem;
padding-left: 1rem;
list-style: disc;
}
.timeline-sector li {
font-size: 0.95rem;
color: #444; 
}

/*vendor-waiting*/
.center-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.card-waiting {
  max-width: 600px;

}
.card-body-waiting {
  text-align: center; 
}
.spinner-container {
  margin-bottom: 15px;
}
.sk-chase {
  width: 40px; 
  height: 40px;
  position: relative;
  margin: 0 auto; 
}
.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #2686ff; 
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
  50% {
      transform: scale(0.4);
  } 100%, 0% {
        transform: scale(1.0);
    }
}
.card-title {
 
  font-weight: bold; 
}
.card-text {
  color: #6c757d;
}

/*dashboard-vendor*/
.card-border-shadow-primary { border-left: 4px solid #007bff; }
.card-border-shadow-warning { border-left: 4px solid #ffc107; }
.card-border-shadow-success { border-left: 4px solid #28a745; }
.card-border-shadow-info { border-left: 4px solid #17a2b8; }
.avatar-initial {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #fff;
}
.bg-label-primary { background-color: #007bff; }
.bg-label-warning { background-color: #ffc107; }
.bg-label-success { background-color: #28a745; }
.bg-label-info { background-color: #17a2b8; }

.timeline-date {
  font-weight: bold;
  color: #6c757d;
}

 /*dashboard-event*/

 .card-stats {
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  height: 100%;
}

.card-stats:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-stats .card-icon {
  font-size: 1.5rem;
  color: #697a8d;
}

.card-stats .card-value {
  font-size: 2rem;
  font-weight: 600;
}

.card-stats .card-title {
  font-size: 0.875rem;
  color: #697a8d;
}

.badge-preparation {
  background-color: #f2f3f8;
  color: #697a8d;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.badge-validated {
  background-color: #e8fadf;
  color: #71dd37;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.badge-j {
  background-color: #fff8e1;
  color: #ffab00;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.event-list-item {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.event-list-item:hover {
  background-color: #f8f9fa;
}

.event-list-item:last-child {
  border-bottom: none;
}

.event-icon {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.task-count {
  font-size: 0.75rem;
  color: #697a8d;
}

.progress-container {
  margin-top: 0.5rem;
  background-color: #f0f0f0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.progress-bar-event {
  height: 0.5rem;
  background-color: #0d6efd;
  border-radius: 0.5rem;
}

.progress-value {
  text-align: right;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  color: #697a8d;
}


/* Styles pour corriger le menu déroulant sur mobile */
@media (max-width: 576px) {
  .dropdown-menu-end {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 80vh !important;
    margin: 0 auto !important;
    overflow-y: auto !important;
    border-radius: 0 0 0.375rem 0.375rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    transform: none !important;
  }
  
  .dropdown-user .dropdown-menu {
    top: 100% !important;
    margin-top: 0.5rem !important;
  }
  
  /* Centrer les éléments dans le dropdown */
  .dropdown-user .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem !important;
  }
  
  /* Agrandir la zone cliquable */
  .dropdown-user .dropdown-item {
    font-size: 1rem !important;
  }
  
  /* Ajouter plus d'espace entre les éléments */
  .dropdown-user .dropdown-menu .dropdown-divider {
    margin: 0.5rem 0 !important;
  }
  
  /* Assurer que le bouton de déconnexion est bien visible */
  .dropdown-user .btn-danger {
    width: 100% !important;
    padding: 0.75rem !important;
    text-align: center !important;
    font-size: 1rem !important;
  }
}

/* Style pour le niveau "Débutant" */
.badge-level-beginner {
  background-color: #56C9F5 !important;
  color: #fff !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.25rem !important;
  font-size: 0.75rem !important;
}

/*style nav landing*/
.navbar-inverse {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 0;
}

.navbar-nav .nav-link, 
.navbar-nav .nav-item a {
  color: #333333;
  font-size: 18px;
  font-weight: 600; 
  padding: 8px 15px;
  text-decoration: none;
  transition: color 0.3s ease; 
}
/*on boarding exportateur-profile*/
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.avatar-xl {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.avatar-sm {
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
}



.dropdown-menu {
  background-color: #FFFFFF;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}
.dropdown-item {
  color: #333333;
  font-size: 14px;
  padding: 8px 20px;
  transition: background-color 0.2s;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

@media (max-width: 992px) {
  .navbar-collapse {
    padding: 15px;
    margin-top: 10px;
  }
  
  .navbar-nav {
    margin-bottom: 10px;
  }
  
  .dropdown-menu {
    width: 100%;
    min-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
.bg-light-subtle {
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}

.bg-light-subtle:hover {
  background-color: #f1f3f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.badge.bg-label-primary {
  font-size: 0.85rem;
}

.onboarding-card .card-header {
  background-color: transparent;
}
}


.logo-container-login {
  position: absolute;
  top: 30px;
  right: 60%;
  transform: translateX(50%);
  z-index: 1050;
  text-align: center;
}

.logo-container-login img {
  max-height: 70px;
}
/* Pour les écrans de taille moyenne */
@media (max-width: 991.98px) {
  .logo-container-login {
    top: 20px;
  }
  .logo-container-login img {
    max-height: 60px;
  }
}
/* Pour les écrans très petits (mobiles) */
@media (max-width: 575.98px) {
  .logo-container-login {
    top: 15px;
  }
  .logo-container-login img {
    max-height: 50px;
  }
}

/*pagination*/
.demo-inline-spacing{
  text-align: center;

}
/*list-event*/

.content-container {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 2rem;
  margin-bottom: 2rem;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.search-container {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100%; 
}

.search-container .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #697a8d;
}

.search-input {
  padding-left: 2.5rem;

  border-radius: 0.375rem;
  border: 1px solid #d9dee3;
  width: 100%; 
  height: 2.5rem;
}

.filter-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.filter-tab {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab.active {
  background-color: #0d6efd;
  color: white;
}

.filter-tab:not(.active) {
  background-color: #f0f0f0;
  color: #697a8d;
}

.cancelled-tab {
  background-color: #f0f0f0;
  color: #697a8d;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  gap: 0.5rem;
  cursor: pointer;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes par défaut */
  gap: 1.5rem; /* Espace entre les cartes */
}

.event-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  display: flex; 
  flex-direction: column; 
  height: 100%; /* Assurez-vous que toutes les cartes prennent la même hauteur */
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}


.event-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

.status-preparation {
  color: #0d6efd;
}

.status-validated {
  color: #28c76f;
}

.status-cancelled {
  color: #ea5455;
}

.status-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.indicator-preparation {
  background-color: #0d6efd;
}

.indicator-validated {
  background-color: #28c76f;
}

.indicator-cancelled {
  background-color: #ea5455;
}

.event-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-description {
  font-size: 0.875rem;
  color: #697a8d;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.event-date, .event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #697a8d;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.event-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #f0f0f0;
  color: #697a8d;
}

.cancelled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.cancelled-badge {
  background-color: #ea5455;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur les écrans moyens */
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr; /* 1 colonne sur les petits écrans */
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 0.375rem;
  overflow: hidden;
}

.page-item {
  margin: 0 3px;
}

.page-item .page-link {
  padding: 0.5rem 0.75rem;
  color: #697a8d;
  background-color: #fff;
  border: 1px solid #d9dee3;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.page-item.active .page-link {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.page-item.disabled .page-link {
  color: #c2c2c2;
  pointer-events: none;
  background-color: #fff;
  border-color: #d9dee3;
}

.page-item .page-link:hover:not(.disabled) {
  color: #0d6efd;
  background-color: #f8f9fa;
  border-color: #d9dee3;
}
.demo-inline-spacing{
  text-align: center;

}
p{
  margin-top:10px
}
.event-card.passed {
  position: relative; /* Pour positionner la croix */
  opacity: 0.5; /* Rendre la carte légèrement transparente */
}

.event-card.passed::after {
  content: '✖'; /* Utiliser une croix comme contenu */
  position: absolute;
  top: 10px; /* Ajustez la position selon vos besoins */
  right: 10px; /* Ajustez la position selon vos besoins */
  font-size: 24px; /* Taille de la croix */
  color: red; /* Couleur de la croix */
  z-index: 10; /* Assurez-vous que la croix est au-dessus de la carte */
}

.back-button {
  color: #697a8d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.back-button:hover {
  color: #0d6efd;
}
.event-icon {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.event-icon i {
  margin-right: 0.5rem;
  color: #697a8d;
}

.event-title-detail {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}
.event-status-badge {
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
}

.j-counter {
  background-color: #fff4db;
  color: #ffab00;
}
.event-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-info-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 1rem;
}

.info-label {
  font-size: 0.75rem;
  color: #697a8d;
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 0.875rem;
  font-weight: 500;
}
.status-container {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.status-message {
  font-size: 1rem;
  color: #202020;
  margin-bottom: 0.5rem;
  text-align: center;
}

.status-action {
  font-size: 0.875rem;
  color: #697a8d;
  margin-bottom: 1.5rem;
  text-align: center;
}
  
.preparation-btn {
  background-color: #11223f;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.preparation-btn:hover {
  background-color: #1e3a6b;
}

.change-status-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  border: 1px solid #d9dee3;
  background-color: white;
  color: #697a8d;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.change-status-btn:hover {
  background-color: #f8f9fa;
}
.kanban-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.kanban-column {
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 320px;
  flex-shrink: 0;
}

.kanban-column h5 {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

.task {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.task:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.task button {
  margin-top: 0.75rem;
  width: 100%;
}

.btn-add-task {
  background-color: #1c1d21;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.875rem;
  transition: 0.3s;
}

.btn-add-task:hover {
  background-color: #343a40;
}

.dragging {
  opacity: 0.5;
}

.sortable-drag {
  background-color: #e2e6ea;
}
#calendar-content {
  min-height: 600px;
}



.fc-toolbar-title {
  font-weight: 600;
}
.offcanvas-wide {
  width: 600px !important; 
  max-width: 100vw !important; 
}

.stepper-add-podcast {
    background-color: #f9fafb;
    min-height: 100%;
}

.step-podcast {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-left: 4px solid #e5e7eb;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.step-podcast.active {
    border-left-color: #6366f1;
    background-color: #ede9fe;
    font-weight: 600;
}

.step-number {
    background-color: #6366f1;
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.875rem;
}

.step-content-podcast {
    display: none;
}

.step-content-podcast.active {
    display: block;
}

.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    display: none;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.is-invalid + .invalid-feedback {
    display: block;
}

/* Pour améliorer les boutons */
#prevStep, #nextStep, #submitButton {
    min-width: 120px;
}
/* Modern Podcast Player & Filters Design */
.mb-search { margin-bottom: 2.2rem !important; }

.audio-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  padding: 12px 20px;
  z-index: 1050;
  min-width: 320px;
  max-width: 95vw;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.audio-bar.d-none { display: none; }
.audio-cover { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.audio-title { font-weight: 600; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; margin-bottom: 2px; }
.audio-times { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: #888; }
.audio-toggle, .audio-prev, .audio-next, .audio-mute, .audio-close {
  background: transparent; border: none; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; border-radius: 50%;
  transition: background 0.18s;
}
.audio-toggle:hover, .audio-prev:hover, .audio-next:hover, .audio-mute:hover, .audio-close:hover {
  background: #f0f2f7;
}
.audio-progress { height: 4px; flex: 1 1 70px; min-width: 70px; max-width: 110px; margin: 0 4px; accent-color: #2563eb; }
.audio-volume { width: 70px; height: 4px; accent-color: #2563eb; }

@media (max-width: 992px) {
  .audio-bar {
    position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 420px);
  max-width: 100vw;
  box-sizing: border-box;
  padding: 12px 10px;
  }
  .audio-title {
    max-width: 100px; /* Augmenter la largeur maximale */
    font-size: 1rem; /* Augmenter la taille de la police */
  }
  .audio-cover {
    width: 40px; /* Augmenter la taille de l'image */
    height: 40px; /* Augmenter la taille de l'image */
  }
 .audio-progress {
  flex: 1 1 90px;
  min-width: 60px;
  max-width: 120px;
}
.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
  margin-top: 26px;
}
.audio-times {
  margin-top: 10px; /* ou plus selon besoin */
}

.audio-volume {
  width: 60px;
  min-width: 30px;
  max-width: 80px;
}

  .audio-toggle, .audio-prev, .audio-next, .audio-mute, .audio-close {
    width: 40px; /* Augmenter la taille des boutons */
    height: 40px; /* Augmenter la taille des boutons */
    font-size: 1rem; /* Augmenter la taille de l'icône */
  }
}

.podcast-filters-box {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem 1.3rem 1.2rem 1.3rem;
  border: 1px solid #f3f4f6;
  margin-bottom: 1.8rem;
}
.podcast-filters-title { font-weight: 700; font-size: 1.13rem; margin-bottom: 1rem; }
.podcast-filters-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.podcast-filters-tags .badge {
  background: #f3f4f6;
  color: #22223b;
  border-radius: 1.1rem;
  font-size: 0.93rem;
  padding: 0.3rem 0.9rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.podcast-filters-tags .badge:hover, .podcast-filters-tags .badge.active {
  background: #e0e7ff;
  color: #3730a3;
}
.podcast-filters-sort {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.1rem;
}
.podcast-filters-sort-btn {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.podcast-filters-sort-btn:hover {
  background: #e0e7ff;
  color: #3730a3;
}

/*solde-coaching*/

.coaching-container {
    background-color: #fff;
    min-height: 100vh;
    padding: 20px 0;
}

.promo-banner {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.coaching-header {
    margin-bottom: 30px;
}

.coaching-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.coaching-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Section Solde Coaching - Structure en deux parties */
.balance-section {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.balance-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: white;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.balance-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.balance-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.balance-content {
    background: white;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 30px;
    background: white;
}

.balance-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: var(--circle-color);
    border-right-color: var(--circle-color);

    transform: rotate(var(--rotation));
    transition: transform 0.4s ease, border-color 0.4s ease;
}




.balance-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.balance-time {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

.balance-info {
    flex-grow: 1;
}

.balance-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #8b5cf6;
}

.balance-validity {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.reserve-btn {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.history-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.history-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.history-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.history-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: #f8fafc;
    color: #6b7280;
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.history-table td {
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.history-table tr:hover {
    background: #f9fafb;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-used {
    background: #dcfce7;
    color: #166534;
}

.status-added {
    background: #dbeafe;
    color: #1e40af;
}

.quantity-negative {
    color: #dc2626;
    font-weight: 600;
}

.quantity-positive {
    color: #059669;
    font-weight: 600;
}

.gift-icon {
    color: #f59e0b;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .balance-content {
        flex-direction: column;
        text-align: center;
    }

    .balance-circle {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .coaching-title {
        font-size: 1.5rem;
    }

    .history-table {
        font-size: 0.9rem;
    }

    .history-table th,
    .history-table td {
        padding: 10px 8px;
    }

    .balance-header {
        padding: 15px 20px;
    }

    .balance-content {
        padding: 30px 20px;
    }

    .promo-banner .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .promo-banner .d-flex:first-child {
        flex-direction: row;
    }
}