@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:var(--body-XL-medium-font-weight),var(--title-800-CAPS-font-weight),var(--body-m-semibold-font-weight),var(--body-m-regular-font-weight),var(--body-s-medium-font-weight),var(--body-XL-semibold-font-weight),var(--body-l-semibold-font-weight),var(--p-small-14-font-weight),var(--body-s-regular-font-weight),var(--body-s-semibold-font-weight),var(--body-XS-medium-font-weight),500,var(--body-m-medium-font-weight),var(--body-l-medium-font-weight),var(--body-l-regular-font-weight)|Urbanist:var(--title-500-semibold-font-weight),var(--title-300-CAPS-font-weight),var(--title-100-CAPS-font-weight),var(--title-600-CAPS-font-weight),var(--title-400-CAPS-font-weight),var(--title-500-CAPS-font-weight),var(--title-700-CAPS-font-weight),var(--title-200-CAPS-font-weight),400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Dropdown styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #1010101a;
  border-radius: 8px;
  box-shadow: 0px 4px 40px 0px rgba(0, 82, 118, 0.12);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

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

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #101010;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  font-size: var(--body-m-medium-font-size);
  text-decoration: none;
  border-bottom: 1px solid #1010100d;
  transition: background-color 0.2s ease;
}

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

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

.dropdown-wrapper {
  position: relative;
}

/* Profile dropdown specific styles */
.profile-dropdown-wrapper {
  position: relative;
}

.profile-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #1010101a;
  border-radius: 8px;
  box-shadow: 0px 4px 40px 0px rgba(0, 82, 118, 0.12);
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

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

.profile-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #101010;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  font-size: var(--body-m-medium-font-size);
  text-decoration: none;
  border-bottom: 1px solid #1010100d;
  transition: background-color 0.2s ease;
}

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

.profile-dropdown-item:last-child {
  border-bottom: none;
}

.profile-dropdown-item.logout {
  color: #e14b4b;
}

.profile-dropdown-item.logout:hover {
  background-color: #ffe3e3;
}

/* Project dropdown specific styles */
.project-dropdown-wrapper {
  position: relative;
}

.project-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #1010101a;
  border-radius: 8px;
  box-shadow: 0px 4px 40px 0px rgba(0, 82, 118, 0.12);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

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

.project-dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #101010;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  font-size: var(--body-m-medium-font-size);
  text-decoration: none;
  border-bottom: 1px solid #1010100d;
  transition: background-color 0.2s ease;
}

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

.project-dropdown-item:last-child {
  border-bottom: none;
}

/* Search functionality styles */
.search-form {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.search-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  color: #101010;
  font-size: var(--body-m-medium-font-size);
  letter-spacing: var(--body-m-medium-letter-spacing);
  line-height: var(--body-m-medium-line-height);
  font-style: var(--body-m-medium-font-style);
}

.search-input-field::placeholder {
  color: #10101066;
}

.search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Notifications dropdown specific styles */
.notifications-dropdown-wrapper {
  position: relative;
}

.notifications-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #1010101a;
  border-radius: 8px;
  box-shadow: 0px 4px 40px 0px rgba(0, 82, 118, 0.12);
  min-width: 320px;
  max-width: 400px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

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

.notifications-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #1010100d;
  background-color: #f4f6fa;
  border-radius: 8px 8px 0 0;
}

.notifications-title {
  font-family: var(--body-l-semibold-font-family);
  font-weight: var(--body-l-semibold-font-weight);
  font-size: var(--body-l-semibold-font-size);
  color: #101010;
  letter-spacing: var(--body-l-semibold-letter-spacing);
  line-height: var(--body-l-semibold-line-height);
  font-style: var(--body-l-semibold-font-style);
}

.notifications-badge {
  background-color: #00a0e6;
  color: #ffffff;
  border-radius: 12px;
  padding: 2px 8px;
  font-family: var(--body-XS-medium-font-family);
  font-weight: var(--body-XS-medium-font-weight);
  font-size: var(--body-XS-medium-font-size);
  letter-spacing: var(--body-XS-medium-letter-spacing);
  line-height: var(--body-XS-medium-line-height);
  font-style: var(--body-XS-medium-font-style);
}

.notifications-list {
  max-height: 300px;
  overflow-y: auto;
}

.notifications-list::-webkit-scrollbar {
  width: 4px;
}

.notifications-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.notifications-list::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #1010100d;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.notification-item:hover {
  background-color: #f4f6fa;
}

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

.notification-item.unread {
  background-color: #f0f9ff;
  border-left: 3px solid #00a0e6;
}

.notification-icon {
  width: 32px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon.info {
  background-color: #e6f7ff;
  color: #00a0e6;
}

.notification-icon.success {
  background-color: #edfcf9;
  color: #2eb485;
}

.notification-icon.warning {
  background-color: #fff2e3;
  color: #ff8e00;
}

.notification-icon.error {
  background-color: #ffe3e3;
  color: #e14b4b;
}

.notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-title {
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  font-size: var(--body-m-semibold-font-size);
  color: #101010;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.notification-message {
  font-family: var(--body-s-regular-font-family);
  font-weight: var(--body-s-regular-font-weight);
  font-size: var(--body-s-regular-font-size);
  color: #101010b2;
  letter-spacing: var(--body-s-regular-letter-spacing);
  line-height: var(--body-s-regular-line-height);
  font-style: var(--body-s-regular-font-style);
}

.notification-time {
  font-family: var(--body-XS-medium-font-family);
  font-weight: var(--body-XS-medium-font-weight);
  font-size: var(--body-XS-medium-font-size);
  color: #10101080;
  letter-spacing: var(--body-XS-medium-letter-spacing);
  line-height: var(--body-XS-medium-line-height);
  font-style: var(--body-XS-medium-font-style);
}

.notifications-footer {
  padding: 12px 20px;
  border-top: 1px solid #1010100d;
  text-align: center;
}

.notifications-view-all {
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  font-size: var(--body-m-semibold-font-size);
  color: #00a0e6;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
  text-decoration: none;
  transition: color 0.2s ease;
}

.notifications-view-all:hover {
  color: #0080b8;
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background-color: #e14b4b;
  border-radius: 4px;
  border: 2px solid #ffffff;
}

/* Header component styles when loaded dynamically */
#header-placeholder .header-4 {
  display: flex;
  width: 1400px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px;
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
  background-color: transparent;
}

#header-placeholder .logo-nav-transverse-3 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

#header-placeholder .icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
}

#header-placeholder .menu-tabs-3 {
  display: inline-flex;
  height: 56px;
  align-items: center;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
  border: 1px solid #1010101a;
}

#header-placeholder .tabs-nav-desktop-3 {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -4.00px;
  margin-bottom: -4.00px;
  border-radius: 40px;
}

#header-placeholder .home-3 {
  position: relative;
  width: 24px;
  height: 24px;
}

#header-placeholder .dashboard-5 {
  position: relative;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #00a0e6;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

#header-placeholder .dropdown-3 {
  display: inline-flex;
  height: 18px;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

#header-placeholder .dashboard-6 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

#header-placeholder .img-6 {
  position: relative;
  width: 16px;
  height: 16px;
}

#header-placeholder .right-nav-3 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

#header-placeholder .search-nav-3 {
  display: inline-flex;
  min-width: 200px;
  height: 56px;
  align-items: center;
  gap: 4px;
  padding: 4px 24px 4px 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f4f6fa;
  border-radius: 40px;
}

#header-placeholder .icon-buttons-2 {
  position: relative;
  width: 48px;
  height: 48px;
}

#header-placeholder .img-7 {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 14px;
  left: 14px;
}

#header-placeholder .project-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

#header-placeholder .button-5 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #1010101a;
  cursor: pointer;
}

#header-placeholder .text-wrapper-22 {
  position: relative;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

#header-placeholder .panel-profile-3 {
  display: inline-flex;
  gap: 10px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

#header-placeholder .button-6 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0px 12px 0px 0px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #1010101a;
  cursor: pointer;
}

#header-placeholder .profile-pic-3 {
  position: relative;
  width: 56px;
  height: 56px;
}

#header-placeholder .text-wrapper-23 {
  position: absolute;
  height: 18px;
  top: 18px;
  left: 18px;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  text-align: center;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

#header-placeholder .icon-2 {
  position: relative;
  height: 56px;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid #1010101a;
}

#header-placeholder .notification-3 {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 15px;
  left: 15px;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:var(--body-XL-medium-font-weight),var(--body-XL-semibold-font-weight),var(--body-m-semibold-font-weight),var(--body-m-regular-font-weight),var(--body-s-medium-font-weight),var(--body-l-semibold-font-weight),var(--body-s-semibold-font-weight),var(--body-m-medium-font-weight),var(--body-l-medium-font-weight),var(--body-l-regular-font-weight)|Urbanist:var(--title-500-semibold-font-weight),var(--title-300-CAPS-font-weight),var(--title-100-CAPS-font-weight),400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:var(--body-XL-medium-font-weight),var(--body-m-semibold-font-weight),var(--body-XL-semibold-font-weight),var(--body-m-regular-font-weight),var(--body-s-medium-font-weight),var(--body-l-semibold-font-weight),var(--body-XL-regular-font-weight),400,var(--body-m-medium-font-weight),var(--body-l-medium-font-weight),var(--body-l-regular-font-weight)|Urbanist:var(--title-500-semibold-font-weight),var(--title-300-CAPS-font-weight),var(--title-100-CAPS-font-weight),400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* Tous les médias s’adaptent */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Les conteneurs ne dépassent jamais l’écran */
div, section, article, main {
  max-width: 100%;
}





