/*
 Theme Name:   LPBW
 Author:       La Petite Boite Web
 Version:      1.0
 Description:  Thème parent minimal pour WordPress
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  lpbw
*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.site-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background-color: #2e1a47;
  color: white;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.logo img {
  max-width: 100%;
  height: auto;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu-list li {
  margin-bottom: 15px;
}

.menu-list a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
}

.menu-list a:hover {
  text-decoration: underline;
}

.content {
  flex-grow: 1;
  padding: 40px;
  background-color: #f5f5f5;
}





/*single client*/

.forfaits-wrapper {display: flex;gap: 2rem;}
.forfaits-menu {
    width: 250px;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1rem;
}
.forfaits-menu ul {list-style: none; padding: 0;}
.forfaits-menu li {cursor: pointer;margin-bottom: 0.75rem;}
.forfaits-menu li.actif {font-weight: bold;text-decoration: underline;}
.forfaits-contenu {flex-grow: 1;}

.carte-info-entreprise {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 50px;
    background: #fff;
    flex-wrap: wrap;
}

.carte-info-entreprise .gauche {
    flex: 1 1 45%;
}

.carte-info-entreprise .droite {
    flex: 1 1 45%;
    text-align: right;
}

.carte-info-entreprise .droite p {
    margin: 0 0 10px;
}

.carte-info-entreprise strong {
    font-weight: 600;
}

/* Mise en page principale */
.layout-client {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sidebar */
.sidebar-client {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Boîtes dans la sidebar */
.box-menu {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 1.2rem;
    background: #fff;
}

.box-menu h2 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.box-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.box-menu li {
    margin-bottom: 0.4rem;
}

.box-menu a {
    text-decoration: underline;
}

/* Contenu à droite */
.contenu-client {
    flex: 1;
}

/* Mise en valeur du badge "modifier" */
.btn-editer {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    vertical-align: middle;
    padding: 0;
}

.forfait-titre {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Bloc fullwidth (en-tête entreprise) */
.carte-info-entreprise {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    border: 2px solid #000;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

/* Après le header entreprise, on commence la mise en page */
.layout-client {
    display: flex;
    gap: 2rem;
}

/* Sidebar à gauche */
.sidebar-client {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Les blocs dans la sidebar */
.box-menu {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 1.2rem;
    background: #fff;
}

/* Contenu principal à droite */
.contenu-client {
    flex: 1;
}

