/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1754310686
Updated: 2025-08-04 14:31:26

*/



/* Styles généraux pour le conteneur du formulaire */
.elementor-element-ce38dd9 {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* Message de succès */
.pods-form-front-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Style du formulaire principal */
.pods-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Espace entre les champs */
}

/* Conteneur de chaque champ */
.pods-field__container {
    flex: 1 1 calc(50% - 20px); /* Deux colonnes avec espace */
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

/* Adaptation pour les petits écrans (une colonne) */
@media (max-width: 768px) {
    .pods-field__container {
        flex: 1 1 100%;
    }
}

/* Étiquettes des champs */
.pods-form-ui-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    font-size: 1rem;
}

/* Styles pour les champs de saisie (texte, email, etc.) */
.pods-form-ui-field-type-text input[type="text"],
.pods-form-ui-field-type-email input[type="email"],
.pods-form-ui-field-type-tel input[type="tel"],
.pods-form-ui-field-type-textarea textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur */
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pods-form-ui-field-type-text input[type="text"]:focus,
.pods-form-ui-field-type-email input[type="email"]:focus,
.pods-form-ui-field-type-tel input[type="tel"]:focus,
.pods-form-ui-field-type-textarea textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Style spécifique pour le champ de fichier (photo de profil) */
.pods-form-ui-row-name-photo-de-profile .pods-dfv-container-file {
    border: 1px dashed #c0c0c0;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    background-color: #fafafa;
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin-top: 10px;
    border: 1px solid #dee2e6;
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-icon img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-name input[type="text"] {
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    padding: 0;
    margin: 0;
    width: auto; /* Permet au nom du fichier de ne pas prendre toute la largeur */
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-remove a {
    color: #dc3545;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-add {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out;
    margin-top: 15px;
    display: inline-block;
}

.pods-form-ui-row-name-photo-de-profile .pods-dfv-list-add:hover {
    background-color: #0056b3;
}

/* Styles pour les champs de sélection (pratiques, etc.) */
/* Select2 ou React Select (basé sur les classes css-b62m3t-container, css-13cymwt-control, etc.) */
.css-b62m3t-container .pods-dfv-pick-full-select__control {
    border: 1px solid #ccc;
    border-radius: 5px;
    min-height: 45px; /* Ajustez la hauteur si nécessaire */
    box-shadow: none;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.css-b62m3t-container .pods-dfv-pick-full-select__control--is-focused {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.css-b62m3t-container .pods-dfv-pick-full-select__value-container {
    padding: 2px 8px;
}

.css-b62m3t-container .pods-dfv-pick-full-select__placeholder {
    color: #888;
}

.pods-list-select-values-container {
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px;
}

.pods-list-select-values {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pods-list-select-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 5px;
    background-color: #f8f9fa;
    border: 1px solid #e2e6ea;
    border-radius: 4px;
    font-size: 0.95rem;
    justify-content: space-between;
}

.pods-list-select-item__inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.pods-list-select-item__col {
    padding: 0 5px;
}

.pods-list-select-item__icon .dashicons {
    color: #6c757d;
}

.pods-list-select-item__name {
    flex-grow: 1;
    color: #343a40;
}

.pods-list-select-item__remove a {
    color: #dc3545;
    text-decoration: none;
    margin-left: 10px;
}

.pods-list-select-item__remove a .dashicons {
    font-size: 16px;
}

.pods-list-select-item__drag-handle {
    cursor: grab;
    color: #6c757d;
}

.pods-list-select-item__move-buttons button {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 0 5px;
}

.pods-list-select-item__move-buttons button[disabled] {
    color: #cccccc;
    cursor: not-allowed;
}

/* Boutons de soumission (s'il y en a, non présents dans le HTML fourni, mais utile en général) */
.pods-form-submit button[type="submit"] {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    margin-top: 20px;
    width: auto;
    display: block; /* S'il est seul, le met sur sa propre ligne */
    margin-left: auto;
    margin-right: auto;
}

.pods-form-submit button[type="submit"]:hover {
    background-color: #218838;
}

/* Pour les éléments cachés qui ne doivent pas être stylisés */
input[type="hidden"] {
    display: none;
}


/* Grille 2 colonnes responsive */
.pratiques-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .pratiques-grid { grid-template-columns: 1fr; }
}

/* Card élégante */
.pratique-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pratique-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* Titre + description */
.pratique-title { 
  margin: 0 0 8px; 
  font-size: clamp(1.1rem, 1vw + .8rem, 1.4rem); 
  line-height: 1.2; 
}
.pratique-title a { 
  text-decoration: none; 
}
.pratique-desc { 
  color: #444; 
  line-height: 1.6; 
}
