

        /* Main Content Container */
        .content-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            margin-top: 20px; /* Chevauchement sur le header */
            padding: 40px;
            position: relative;
            z-index: 10;
        }

        /* Titre Section avec le tiret vertical */
        .section-title-wrapper {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        .title-indicator {
            width: 5px;
            height: 30px;
            background-color: var(--secondary-color);
            margin-right: 15px;
            display: inline-block;
        }
        
        /* Formulaire */
        .search-box {
            background-color: #f1f3f5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .form-control:focus {
            border-color: var(--text-white);
            box-shadow: 0 0 0 0.25rem rgba(106, 154, 59, 0.25);
        }

        .btn-ada {
            background-color: var(--text-white);
            color: white;
            padding: 10px 30px;
            border-radius: 5px;
            border: none;
            transition: all 0.3s;
        }
        
        .btn-ada:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        /* Carte de résultat */
        .result-card {
            border-left: 5px solid #0f172a;
            background-color: #fcfcfc;
            padding: 20px;
            margin-bottom: 30px;
        }

        .status-badge {
            background-color: #d4edda;
            color: #155724;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Liste des conditions stylisée */
        .condition-list {
            counter-reset: my-counter;
            list-style: none;
            padding: 0;
        }
        .condition-list li {
            position: relative;
            padding-left: 40px;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .condition-list li::before {
            counter-increment: my-counter;
            content: counter(my-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 28px;
            height: 28px;
            background-color: var(--text-white);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            font-weight: bold;
            font-size: 14px;
        }

        /* Section Contact */
        .contact-box {
            background-color: #0f172a;
            color: white;
            border-radius: 8px;
            padding: 30px;
        }
        .contact-box h5 {
            border-bottom: 2px solid var(--text-white);
            padding-bottom: 10px;
            display: inline-block;
            margin-bottom: 20px;
            color:var(--text-white);
        }
        .contact-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .contact-item i {
            color: var(--text-white);
            width: 25px;
            margin-right: 10px;
        }
.alert.alert-info {

}
.alert.alert-info p{
    font-size: 1rem;
}


/* Documents Download Cards */
.documents-download-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.document-card {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.document-card:hover {
  border-color: var(--primary-color);
  background: #f8fafb;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #333;
}

.document-card-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #0f172a12;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.document-card-icon i {
  font-size: 24px;
  color: #0f172a;
}

.document-card-content {
  flex: 1;
}

.document-title {
  margin: 0 0 0px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.document-info {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.document-card-action {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.document-card-action i {
  color: var(--text-dark);
  font-size: 16px;
}

.document-card:hover .document-card-action {
  background: var(--secondary-color);
  transform: scale(1.1);
}

/* Version simple avec boutons */
.download-files-list {
  margin-top: 15px;
}

.file-download-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8fafc;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  margin-bottom: 10px;
}

.file-icon {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-right: 15px;
}

.file-icon i {
  font-size: 24px;
}

.file-info {
  flex: 1;
}

.file-link {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5px;
}

.file-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.file-meta {
  font-size: 12px;
  color: #64748b;
}
.one_title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}