@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

@import "projects.css";
@import "chat.css";
@import "segments.css";
@import "proposition_valeur.css";
@import "etude_marche.css";
@import "modele_economique.css";
@import "projection_financiere.css";
@import "business_plan.css";
@import "user.css";
@import "idee_du_jour.css";
@import "structure_registrations.css";
@import "admin.css";

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

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

body{
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
}

a{
    text-decoration: none;
}

input:focus, textarea:focus, select:focus{
    outline: none;
}

input:focus-visible, textarea:focus-visible, select:focus-visible{
    outline: none;
}

input:focus-within, textarea:focus-within, select:focus-within{
    outline: none;
}

textarea{
    resize: none;
}

button{
    background-color: transparent;
    cursor: pointer;   
}

main{
    display: flex;
    flex-direction: row;
    height: 100vh;
    background-color: #F6F7F8;
    overflow-y: hidden;
}

/* Flash Messages Container */
.flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
  }
  
  /* Flash Alert Base */
  .flash-alert {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
  }
  
  .flash-alert.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .flash-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    position: relative;
  }
  
  /* Flash Icon */
  .flash-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }
  
  .flash-notice .flash-icon {
    background-color: #D1FAE5;
    color: #059669;
  }
  
  .flash-alert-error .flash-icon {
    background-color: #FEE2E2;
    color: #DC2626;
  }
  
  /* Flash Message */
  .flash-message {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #1F2937;
  }
  
  .flash-notice .flash-message {
    color: #065F46;
  }
  
  .flash-alert-error .flash-message {
    color: #991B1B;
  }
  
  /* Flash Close Button */
  .flash-close {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }
  
  .flash-close:hover {
    color: #374151;
    background-color: #F3F4F6;
  }
  
  .flash-close i {
    font-size: 14px;
  }
  
  /* Notice Style */
  .flash-notice {
    border-left: 4px solid #059669;
  }
  
  /* Alert Error Style */
  .flash-alert-error {
    border-left: 4px solid #DC2626;
  }
  
  /* Responsive */
  @media (max-width: 640px) {
    .flash-container {
      top: 10px;
      right: 10px;
      left: 10px;
      width: calc(100% - 20px);
      max-width: none;
    }
  
    .flash-content {
      padding: 14px 16px;
      gap: 12px;
    }
  
    .flash-icon {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }
  
    .flash-message {
      font-size: 13px;
    }

    .flash-alert-error {
        border-left: 4px solid #DC2626;
    }
  }
  
  


/* Sidebar */

.sidebar-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    border-right: 1px solid #DFE5EC;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar{
    width: 350px;
    padding: 24px;
}

.sidebar-footer{
    padding: 24px;
}

.sidebar-footer .user-menu-button{
    width: 100%;
    justify-content: space-between;
    border-radius: 20px;
}


.sidebar-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DFE5EC;
}

.sidebar-close-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #6E7F93;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.sidebar-close-button:hover {
    background-color: #F6F7F8;
}

.sidebar nav{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar nav a{
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #6E7F93;
}

span.sidebar-module-item{
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: #6E7F93;
}

.sidebar nav a.active{
    color: #0A58A5;
    background-color: #0a58a510;
    font-weight: 700;
    box-shadow: 0px 4px 8px 0px #0000000D;
    border: 1px solid var(--Color-2, #0A58A5)
}

.sidebar-title {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.sidebar-title h1 {
    color: var(--stroke-1, #DFE5EC);
    font-size: 12px;
    font-weight: 700;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #DFE5EC;
}

.exit-button{
    padding: 0 !important;
}

.exit-button span{
    color: var(--Color0, #445972);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px; /* 100% */
}

.exit-button i{
    border-radius: 23px;
    background: #FFF;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A58A5;
    /* gr1 */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
}

.sidebar-module-icon{
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F6F7F8;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 8px; /* 66.667% */
}

.sidebar-module-item{
    border-radius: 10px;
    border: 1px solid var(--stroke-1, #DFE5EC);
}

/* Main */

.main{
    flex: 1;
}

header{
    display: none;
}

/*
header{
    height: 70px;
    width: 100%;
    border-bottom: 1px solid #DFE5EC;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 24px;
    position: relative;
}

header .whatsapp-button{
    display: none;
}

*/

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A58A5;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-right: 12px;
}

.mobile-menu-button:hover {
    background-color: #F6F7F8;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

.header-icons-group{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 30px;
}

.header-icon-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
    position: relative;
}


/* User Menu Container */
.user-menu-container {
    position: relative;

}

.user-menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    border: 1px solid #DFE5EC;
    border-radius: 10px;
}

.user-menu-button:hover {
    background-color: #F3F4F6;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0A58A5;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.4;
}

.user-role {
    font-size: 12px;
    color: #6E7F93;
    line-height: 1.4;
}

.dropdown-arrow {
    color: #6E7F93;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.user-menu-button:hover .dropdown-arrow {
    color: #0A58A5;
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    width: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #DFE5EC;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.037);
    min-width: 220px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-icon{
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item-icon span{
    color: var(--Color0, #445972);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 8px; /* 57.143% */
}

.notifications-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    color: #1F2937;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Open Sans", sans-serif;
    text-align: left;
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: #F3F4F6;
}

.dropdown-item.logout-item {
    color: #DC2626;
}

.dropdown-item.logout-item:hover {
    background-color: #FEE2E2;
    color: #991B1B;
}

.dropdown-divider {
    height: 1px;
    background-color: #DFE5EC;
    margin: 8px 0;
}

.dropdown-item-badge{
    border-radius: 30px;
    background: #FC121B;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 8px; /* 80% */
}

.dropdown-item-text{
    color: var(--Color0, #445972);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 8px; /* 57.143% */
}

.credits-balance{
    border-radius: 30px;
    background: #0A58A5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 8px; /* 80% */
}


/* Language Switcher */
.language-switcher-container {
    position: relative;
}

.language-switcher-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    font-size: 16px;
    font-weight: 800;
    color: #6E7F93;
}

.language-switcher-button:hover {
    background-color: #F3F4F6;
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #DFE5EC;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.language-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    color: #1F2937;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    font-family: "Open Sans", sans-serif;
    text-align: left;
}

.language-dropdown-menu .dropdown-item:hover {
    background-color: #F3F4F6;
}

.langue-button span{
    font-size: 16px;
    font-weight: 800;
    color: #6E7F93;
}

.credit-badge{
    position: absolute;
    top: 2px;
    right: -7px;
    background-color: #0A58A5;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 700;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #FFFFFF;
}

.notification-badge{
    position: absolute;
    top: 2px;
    right: 6px;
    background-color: #DC2626;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: 700;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #FFFFFF;
}

.content{
    margin: 24px;
    height: calc(100vh - 48px);
    border-radius: 25px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #fff;
}



/* Mobile Bottom Navbar */
.mobile-bottom-navbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 1px solid #DFE5EC;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    color: #6E7F93;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
    min-width: 60px;
}

.mobile-nav-item svg,
.mobile-nav-item .icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.mobile-nav-item.active {
    color: #0A58A5;
}

.mobile-nav-item span {
    font-size: 11px;
}

.mobile-nav-badge {
    position: absolute;
    top: 6px;
    right: calc(50% - 20px);
    background-color: #EF4444;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 14px;
}

.mobile-nav-credit {
    position: absolute;
    top: 6px;
    right: 29px;
    background-color: #0A58A5;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 14px;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #0A58A5;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-right: 12px;
}

.mobile-menu-button:hover {
    background-color: #F6F7F8;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

.page-header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--stroke-1, #DFE5EC);
    padding: 20px 31px;
    background: linear-gradient(180deg, #E6ECF5 0%, #FFFFFF 100%);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 9;
    height: 90px;
}

.page-header-content h1{
    color: var(--Color1, #223245);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 100% */
}

.gross-margin-card p{
    color: #59B224;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
}

.page-header-content p{
    color: var(--Color2, #6E7F93);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; 
    margin-top: 7px;
}

.page-header-content .add-project-button{
    display: flex;
    width: 185px;
    height: 44px;
    padding: 12px 17px;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 15px;
    background: #0A58A5;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.page-header-content .add-project-button span{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
}

.page-header-left{
    display: flex;
    gap: 12px;
    align-items: center;
}

.page-header-left .back-button{
    border-radius: 23px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    width: 42px;
    height: 42px;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-left .back-button i{
    color: #0A58A5;
}

.project-cohorte-page-title{
    display: flex;
    gap: 10px ;
    align-items: center;
}

.project-cohorte-star-container{
    color: #59B224;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px; /* 100% */
    border-radius: 7px;
    border: 1px solid #59B224;
    align-items: center;
    display: flex;
    gap: 4px;
    padding: 7px 10px;
}

.home-page{
    padding: 60px 100px;
}

.ai-badge{
    border-radius: 25px;
    background: rgba(10, 88, 165, 0.08);
    height: 32px;
    padding: 10px 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
}

.ai-badge span{
    color: #0A58A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px; /* 85.714% */
}

h1.greeting{
    margin-top: 45px;
    text-align: center;
    color: var(--Color1, #223245);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px; /* 42.857% */
}

p.subtitle{
    color: var(--Color2, #6E7F93);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px; /* 85.714% */
    margin-top: 26px;
    text-align: center;
}

.ai-assistant-intro .action-cards{
    margin-top: 47px;
    display: flex;
    align-items: stretch; 
    gap: 25px;
}

.ai-assistant-intro .action-cards a, .ai-assistant-intro .action-cards button{
    border-radius: 20px;
    border: 1px solid var(--stroke-1, #DFE5EC);
    background: #FFF;
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
}

.ai-assistant-intro .action-cards a img, .ai-assistant-intro .action-cards button img{
    width: 46px;
    height: 46px;
}

.ai-assistant-intro .action-cards a h2, .ai-assistant-intro .action-cards button h2{
    color: var(--Color1, #223245);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
    text-align: left;
} 

.ai-assistant-intro .action-cards a p, .ai-assistant-intro .action-cards button p{
    color: var(--Color2, #6E7F93);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
    text-align: left;
}

.idee-du-jour{
    margin-top: 60px;
    border-radius: 20px;
    background: linear-gradient(97deg, #0A58A5 -8.25%, #161921 134.93%);
    padding: 29px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.idee-du-jour-content{
    width: 70%;
}

.idee-tag{
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    padding: 11px 28px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 166.667% */
    width: fit-content;
}

.idee-du-jour-content h3{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 83.333% */
    margin-top: 26px;
}

.idee-du-jour-content p{
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    margin-top: 15px;
    margin-bottom: 30px;
}

.idee-du-jour-content a{
    border-radius: 20px;
    background: #FFF;
    height: 42px;
    padding: 11px 28px;
    color: #0A58A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
    margin-top: 30px;
}

.explorer-page{
    padding: 30px;
}

.explorer-page-header{
    border-radius: 20px;
    background: var(--gar, linear-gradient(97deg, #0A58A5 -8.25%, #161921 134.93%));
    /* gr2 */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.explorer-page-header-title{
    display: flex;
    gap: 10px;
    align-items: center;
}


.explorer-page-header-title h1{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px; /* 138.889% */
}

.explorer-page-header-actions{
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.explorer-page-header-actions .explorer-page-header-action-button{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid var(--dee, #ffffff2a);
    background: rgba(0, 0, 0, 0.10);
    padding: 12px 28px;
}

.explorer-page-header-actions .explorer-page-header-action-button h2{
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 77.778% */
}

.explorer-page-header-actions .explorer-page-header-action-button span{
    color: #BEDBFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 116.667% */
    margin-top: 4px;
}

.explorer-users{
    display: flex;
    align-items: center;
    gap: 15px;
}

.explorer-users img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: -15px;
}

.explorer-users p{
    color: #BEDBFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.ideation-title{
    margin-top: 30px;
}

.ideation-cards{
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.ideation-card{
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--stroke-1, #DFE5EC);
    background: #FFF;

    /* gr2 */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.ideation-card h3{
    color: #223245;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
}

.ideation-card p{
    color: #6E7F93;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.ideation-card a{
    border-radius: 10px;
    background: rgba(10, 88, 165, 0.06);
    height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #0A58A5;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 142.857% */
}

h2.ideation-title{
    color: var(--Color0, #445972);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 177.778% */
}

@media (max-width: 768px){
    
    header {
        padding: 0 16px;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 999;
        height: 70px;
    }

    .content{
        margin-top: 70px !important;
        height: calc(100vh - 147.5px);
        border-radius: 0;
        margin: 0;
        margin-bottom: 77.5px !important;
    }

    .mobile-menu-button {
        display: block;
        order: -1;
        margin-right: auto;
    }

    .header-icons-group {
        display: none;
    }

    .user-menu-container {
        display: none;
    }

    .sidebar-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        width: 100%;
    }

    .sidebar-overlay {
        display: block;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        pointer-events: none;
    }

    .sidebar-container .sidebar-overlay.show {
        opacity: 1;
        pointer-events: all;
    }

    .sidebar-container.mobile-open {
        transform: translateX(0);
    }

    .sidebar-container.mobile-open .sidebar-overlay {
        opacity: 1;
        pointer-events: all;
    }

    .sidebar {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .sidebar-header-mobile {
        display: flex;
    }

    .sidebar-close-button {
        display: block;
    }

    .mobile-bottom-navbar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: 60px;
    }

    .sidebar .logo.web{
        display: none;
    }

    .projects-grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .project-card{
        padding: 16px;
    }

    .project-card-header{
        gap: 8px;
    }

    .page-header-content .add-project-button{
        width: fit-content;
    }

    .page-header-content p, .page-header-content .add-project-button span{
        display: none;
    }

    .page-header-content h1 {
        font-size: 20px;
    }

    .page-header-content{
        height: 85px;
        padding: 20px 16px;
    }

    .projects-page{
        height: calc(100% - 85px);
        overflow: scroll;
    }
    
    .project-show-nav{
        gap: 15px;
    }

    .settings-tabs{
        gap: 0;
        width: 100%;
    }

    .settings-tabs button{
        padding: 0;
        width: 33%;
    }

    .settings-form .form-row{
        flex-direction: column;
        gap: 0;
    }

    .settings-form .form-row .form-group{
        width: 100%;
    }

    .settings-form .save-button{
        width: 100%;
    }

    .projects-page {
        padding: 20px;
    }

    .home-page{
        height: calc(100vh - 147.5px);
        padding: 30px 20px;
        overflow: scroll;
    }

    .ai-assistant-intro .action-cards{
        flex-direction: column;
    }

    .ai-assistant-intro .action-cards a, .ai-assistant-intro .action-cards button{
        width: 100%;
    }

    .idee-du-jour{
        flex-direction: column-reverse;
        padding-bottom: 20px;
    }

    .idee-du-jour-content, .idee-du-jour-content a{
        width: 100%;
    }

    .idee-du-jour-content a{
        display: flex;
        justify-content: center;
    }

    .idee-du-jour img{
        width: 50px;
        height: 50px;
    }

    
    
}
