@charset  "UTF-8";

/** ZINDEX
app_processing:			20100 (because jquery date picker widget)
confirmation:			1050
notification:			1045
menu:					1040
window_popup:			1020
modules_menu:			1010
modalmask:				1000
header_logo				410
header:					400
module:					300
module_container:		100
**/

@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Noto';
  src: url('fonts/NotoSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Lobster';
  src: url('fonts/Lobster-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --toolbar-height: 40px;
  --left-pane-width: 320px;
}

html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

body {
  font-family: 'Noto';
  font-size: 1.0rem;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.systeme_css_hidden { display: none !important; }
.systeme_css_visible { display: flex !important; }

/* --- PROCESSING --- */
/* --- PROCESSING --- */
.systeme_css_processing_mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20100;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.systeme_css_processing_card {
  width: 90%;
  max-width: 360px;
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.systeme_css_processing_text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.systeme_css_processing_loader {
  width: 60px;
  height: 60px;
  animation: systeme_processing_spin 1.1s linear infinite;
}
.systeme_css_processing_loader circle {
  stroke-linecap: round;
  stroke-dasharray: 80, 150;
  stroke-dashoffset: 0;
}
@keyframes systeme_processing_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.systeme_css_processing_subtext {
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.4;
}

/** MODAL MASK **/
.systeme_css_modal_mask_black { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; backdrop-filter: blur(12px); display: none; z-index: 1000; }
.systeme_css_modal_mask_clear { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; display: none; z-index: 1000; }

/** CONFIRMATION **/
.systeme_css_confirmation_container {
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(4px);
  z-index: 1050;
}
.systeme_css_confirmation_card {
  width: 100%;
  max-width: 420px;
  padding: 28px 24px 24px 24px;
  box-sizing: border-box;
  border-radius: 16px;
  text-align: center;
  margin: auto;
}
.systeme_css_confirmation_title {
  font-family: 'Noto', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.systeme_css_confirmation_message {
  font-family: 'Noto', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.5;
}
.systeme_css_confirmation_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.systeme_css_confirmation_actions button {
  min-width: 110px;
  min-height: 40px;
  border-radius: 8px;
  font-family: 'Noto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}

/** NOTIFICATION TOAST POSITIONING **/
.systeme_css_notification_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: 64px;
  display: none;
  z-index: 1045;
}
.systeme_css_notification_title { font-size: 80%; font-weight: 700; height: 28px; }
.systeme_css_notification_texte { padding-left: 4px; font-size: 60%; font-weight: 700; font-family: 'Noto'; }
.systeme_css_notification_border_status { height: 3px; }

/** TOOLTIP **/
.systeme_css_tooltip {
  position: fixed;
  box-sizing: border-box;
  padding: 8px 12px;
  width: auto;
  max-width: 280px;
  display: none;
  border-radius: 8px;
  font-family: 'Noto', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.2px;
  z-index: 5000;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12), 0 4px 6px -4px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/** SCROLLBARS **/
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { border-radius: 20px; border: 1px solid transparent; }

/** MASTER LAYOUT**/
#systeme_id_toolbar {
  height: var(--toolbar-height);
  min-height: var(--toolbar-height);
  width: 100%;
  position: relative;
  z-index: 1000;
  box-sizing: border-box;
}
.systeme_css_header_mode_toggle_container { border-radius: 6px; box-sizing: border-box; padding-left: 4px; padding-right: 4px; padding-top: 2px; padding-bottom: 2px; }
.systeme_css_header_mode_toggle_option_on { border-radius: 6px; box-sizing: border-box; padding: 2px; display: flex; align-items: center; justify-content: center; }
.systeme_css_header_mode_toggle_option_off { border-radius: 6px; box-sizing: border-box; padding-left: 4px; padding-right: 4px; padding-top: 4px; padding-bottom: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.systeme_css_main_container {
  display: grid;
  grid-template-columns: var(--left-width, var(--left-pane-width)) 1fr;
  height: 100vh;
  margin-top: 0px;
  width: 100vw;
  overflow: hidden;
  transition: grid-template-columns 320ms ease-in-out;
}
#systeme_id_pane_left {
  grid-column: 1;
  height: 100%;
  min-height: 0;
  width: var(--left-pane-width) !important;
  min-width: var(--left-pane-width) !important;
  max-width: var(--left-pane-width) !important;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.systeme_css_pane_left_title { font-size: 85%; font-weight: 500; padding-left: 8px; }
#systeme_id_pane_left_SCROLLER {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 12px; /* Provides consistent left/right gutters for cards and section headers */
  box-sizing: border-box;
}
#systeme_id_pane_center {
  grid-column: 2;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.systeme_css_pane_center_modules_menu_selector { border-radius: 6px; box-sizing: border-box; padding-left: 8px; padding-right: 8px; padding-top: 4px; padding-bottom: 4px; font-size: 100%; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; }
#systeme_id_module_container {
  flex: 1;
  min-height: 0; /* Prevents module container from expanding off-screen */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  padding-top: 12px;
}
#systeme_id_access_denied_container { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; display: none; z-index: 1060; }

/** POPUP WINDOWS **/
.systeme_css_window_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/** MODULES & VIEWS **/
.systeme_css_module { 
  position: relative;
  flex: 1;
  min-height: 0;
  height: 100%; 
  width: 100%; 
  display: none; 
  flex-direction: column; 
  overflow: hidden; 
  z-index: 10; 
}
.systeme_css_module[style*="display: block"] {
  display: flex !important;
}
.systeme_css_module_toolbar { height: 44px; box-sizing: border-box; padding-left: 12px; padding-right: 12px; }
.systeme_css_module_toolbar_pastille_selected { height: 32px; padding-left: 12px; padding-right: 12px; border-radius: 8px; font-size: 85%; font-weight: 700; white-space: nowrap; display: flex; align-items: center; justify-content: center; }
.systeme_css_module_toolbar_pastille { height: 32px; padding-left: 12px; padding-right: 12px; border-radius: 8px; font-size: 85%; font-weight: 700; white-space: nowrap; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.systeme_css_module_toolbar_pastille_count { padding-left: 8px; font-size: 75%; font-weight: 700; }
.systeme_css_module_modal_mask_black { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; backdrop-filter: blur(12px); z-index: 450; display: none; }
.systeme_css_module_modal_mask_clear { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 450; display: none; }

.systeme_css_view_container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.systeme_css_view { 
	position: relative;
	flex: 1;
	min-height: 0;
	height: 100%; 
	width: 100%; 
	display: none; 
	flex-direction: column; 
	overflow: hidden; 
	z-index: 11; 
}
.systeme_css_view[style*="display: block"] {
  display: flex !important;
}
.systeme_css_view_toolbar { height: 44px; box-sizing: border-box; padding-left: 12px; padding-right: 12px; }
.systeme_css_view_toolbar_icon {width:40px;text-align:center;}
.systeme_css_view_toolbar_filter_input { padding-left: 6px; padding-right: 4px; outline: none; font-family: 'Noto'; font-size: 85%; font-weight: 500; border-radius: 4px; width: 100%; height: 30px; }
select.systeme_css_view_toolbar_filter_input {
    width: auto;
    max-width: 200px;
    padding-right: 24px;
    text-overflow: ellipsis;
}
.systeme_css_filter_panel_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 400;
    display: none;
}
.systeme_css_filter_panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 360px;
    max-width: 90vw;
    z-index: 401;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.systeme_css_filter_panel.open {
    transform: translateX(0);
}
.systeme_css_filter_panel_header {
    height: 52px;
    min-height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-sizing: border-box;
}
.systeme_css_filter_panel_body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
}
.systeme_css_filter_panel_footer {
    height: 60px;
    min-height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex-shrink: 0;
    box-sizing: border-box;
}

.systeme_css_view_scroller {
  flex: 1;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}
.systeme_css_view_second_layer {display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:400; flex-direction:column;}
/** VIEWS MENU **/
.systeme_css_modules_menu_container { 
  position: absolute; 
  box-sizing: border-box; 
  padding: 12px; 
  width: 320px; 
  height: 300px; 
  z-index: 1010; 
  display: none; 
  top: calc(100% + 4px); /* Drops down perfectly beneath selector bounding frame */
  left: 0px;             /* Locks flush with left side margin of selector button */
}
.systeme_css_modules_menu_row { width: 100%; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: left; border-radius: 6px; }
.systeme_css_modules_menu_row_icon { padding-left: 8px; }
.systeme_css_modules_menu_row_texte { font-size: 80%; font-weight: 500; padding-left: 12px; max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.systeme_css_modules_moreoptions_menu { 
  position: absolute; 
  box-sizing: border-box; 
  padding: 12px; 
  width: 260px; 
  height: 200px; 
  overflow-x: hidden; 
  overflow-y: auto; 
  z-index: 500; 
  display: none; 
  top: 44px;         /* Positioned directly under the 44px sub-toolbar line block */
  right: 12px;       /* Aligned with right margin content bounds */
}
.systeme_css_modules_moreoptions_menu_row { width: 100%; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: left; }
.systeme_css_modules_moreoptions_menu_row_icon { padding-left: 8px; }
.systeme_css_modules_moreoptions_menu_row_texte { font-size: 80%; font-weight: 500; padding-left: 12px; max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/** VIEWS TABS **/
/** LEVEL 2 SUB-TABS (UNDERLINE NAV) **/
.systeme_css_tab_level2_container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}
.systeme_css_tab_level2X {
  display: inline-flex;
  align-items: center;
  font-family: 'Noto', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding: 10px 4px;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: color 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.systeme_css_tab_level2 {
  font-weight: 500;
}
.systeme_css_tab_level2_selected {
  font-weight: 700;
}

/** AI MODE **/
.systeme_css_chatbot_container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.systeme_css_chatbot_scroller {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    box-sizing: border-box;
}
.systeme_css_chatbot_messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}
.systeme_css_chatbot_bubble_row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    width: 100%;
}
.systeme_css_chatbot_bubble_row.user {
    justify-content: flex-end;
}
.systeme_css_chatbot_bubble_row.agent {
    justify-content: flex-start;
}
.systeme_css_chatbot_avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.systeme_css_chatbot_bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}
.systeme_css_chatbot_bubble.user {
    border-bottom-right-radius: 4px;
}
.systeme_css_chatbot_bubble.agent {
    border-bottom-left-radius: 4px;
}
.systeme_css_chatbot_bubble_attachments {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.systeme_css_chatbot_bubble_att_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
}
.systeme_css_chatbot_bottom_wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.systeme_css_chatbot_quick_actions {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    box-sizing: border-box;
}
.systeme_css_chatbot_pastille {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.systeme_css_chatbot_input_box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 24px;
    box-sizing: border-box;
}
.systeme_css_chatbot_action_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.systeme_css_chatbot_input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Noto', sans-serif;
    font-size: 0.9rem;
}
.systeme_css_chatbot_attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.systeme_css_chatbot_att_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}
.systeme_css_chatbot_att_name {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/** EVENTS LIST **/
.systeme_css_events_list_wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.systeme_css_event_item {
    padding: 6px 0;
}
.systeme_css_event_item_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.systeme_css_event_item_title {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1.3;
}
.systeme_css_event_item_time {
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 4px;
}
.systeme_css_event_item_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.systeme_css_event_item_calendar {
    font-size: 0.7rem;
    font-style: italic;
    font-weight: 600;
}
.systeme_css_event_item_link {
    font-size: 0.7rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
}
.systeme_css_event_item_link svg {
    width: 10px;
    height: 10px;
}
.systeme_css_events_empty_message {
    font-style: italic;
    font-size: 0.75rem;
    margin-top: 8px;
}
.systeme_css_events_error_message {
    font-size: 0.75rem;
    margin-top: 8px;
}

/** ACTION CARDS **/
.systeme_css_action_card {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  padding: 10px 12px;
  margin: 10px 0;
  border-radius: 12px; /* Restores smooth 12px rounded corners */
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.systeme_css_action_card.clickable {
  cursor: pointer;
}
.systeme_css_action_card._title {
  font-family: 'Noto', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}
.systeme_css_action_card._texte {
  padding: 10px 12px;
  font-family: 'Noto', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  line-height: 1.4;
}
.systeme_css_action_card_icon_container {width:36px;height:36px;border-radius:6px;display:flex;align-items: center; justify-content: center;}
.systeme_css_action_card_icon {width:24px;height:24px;}

/** GENERIC TILES **/
.systeme_css_tile_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
.systeme_css_tile_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s ease,
              border-color 0.2s ease,
              background-color 0.2s ease;
}
.systeme_css_tile_card:hover {
  transform: translateY(-4px);
}
.systeme_css_tile_card_icon_wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.systeme_css_tile_card:hover .systeme_css_tile_card_icon_wrapper {
  transform: scale(1.08);
}
.systeme_css_tile_card_title {
  font-family: 'Noto', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.systeme_css_tile_card_subtitle {
  font-family: 'Noto', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  line-height: 1.4;
}
.systeme_css_tile_card_settings {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.systeme_css_tile_card_settings:hover {
  transform: scale(1.15);
}

/** DASHBOARD TILES **/
.systeme_css_dashboard_tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 120px;
  box-sizing: border-box;
  cursor: default;
  user-select: none;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s ease,
              border-color 0.22s ease,
              background 0.25s ease;
}
.systeme_css_dashboard_tile_bg_icon {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px !important;
  height: 80px !important;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}.systeme_css_dashboard_tile_value,
.systeme_css_dashboard_tile_label {
  position: relative;
  z-index: 2;
}
.systeme_css_dashboard_tile:hover .systeme_css_dashboard_tile_bg_icon {
  transform: translate(-50%, -50%) scale(1.12);
}
.systeme_css_dashboard_tile_help_icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px !important;
  height: 16px !important;
  cursor: help; /* Cursor changes to help when hovering icon */
  z-index: 3;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.systeme_css_dashboard_tile_help_icon:hover {
  opacity: 1;
  transform: scale(1.15);
}
.systeme_css_dashboard_tile_value {font-size:290%;font-weight:700;cursor: pointer; transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;}
.systeme_css_dashboard_tile_value.clickable:hover {transform: scale(1.1);opacity: 0.9;}
.systeme_css_dashboard_tile_label {font-size:80%;font-weight:500;}

/** FEED CARDS **/
.systeme_css_feed_card {
  position: relative;
  box-sizing: border-box;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}
.systeme_css_feed_card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.systeme_css_feed_card_time_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.systeme_css_feed_card_chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.systeme_css_feed_card_time {
  font-family: 'Noto', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.systeme_css_feed_card_title {
  font-size: 0.8rem;
  font-weight: 500;
  padding-left: 24px;
}
.systeme_css_feed_card_user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  padding-left: 24px;
  margin-top: 2px;
}
.systeme_css_feed_card_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/** POSTS TILES **/
.systeme_css_post_card {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 16px auto;
  padding: 16px;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.systeme_css_post_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.systeme_css_post_title {
  font-family: 'Noto', sans-serif;
  font-size: 115%;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}
.systeme_css_post_texte,
.systeme_css_post_texte p {
  font-family: 'Noto', sans-serif;
  font-size: 90%;
  font-weight: 400;
  line-height: 1.35;
  word-break: break-word;
}
.systeme_css_post_top_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.systeme_css_post_meta_row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.systeme_css_post_avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.systeme_css_post_meta_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}
.systeme_css_post_meta_bullet {
  opacity: 0.5;
}
.systeme_css_post_body {
  font-size: 0.925rem;
  line-height: 1.5;
  word-break: break-word;
}
.systeme_css_post_images_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.systeme_css_post_image_item {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.systeme_css_post_footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  border-top: 1px solid transparent; /* Border assigned in theme */
}
.systeme_css_post_action_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}
.systeme_css_post_replies_wrapper {
  margin-top: 8px;
  padding-left: 12px;
  border-left: 2px solid transparent; /* Assigned in theme */
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.systeme_css_post_reply_card {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
}
.systeme_css_post_reply_header {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 4px;
}

/** KANBAN **/
.systeme_css_kanban_scroller {
  overflow-x: auto;
  overflow-y: auto;
  height: 100%;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
}
.systeme_css_kanban_board {
  display: inline-flex;
  gap: 16px;
  min-width: 100%;
  height: 100%;
  align-items: stretch;
  min-height: 500px;
  box-sizing: border-box;
}
.systeme_css_kanban_column {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.systeme_css_kanban_column_header {
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}
.systeme_css_kanban_column_title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.systeme_css_kanban_column_badge {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
.systeme_css_kanban_drop_zone {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  padding: 6px;
  border-radius: 6px;
  transition: background-color 0.2s ease, outline 0.2s ease;
}
.systeme_css_kanban_card {
  border-radius: 8px;
  padding: 12px;
  cursor: grab;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.systeme_css_kanban_card:active {
  cursor: grabbing;
}
.systeme_css_kanban_card_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.systeme_css_kanban_card_title {
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.systeme_css_kanban_card_icon {
  flex-shrink: 0;
}
.systeme_css_kanban_card_description {
  font-size: 0.75rem;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.systeme_css_kanban_card_dates {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.7rem;
}
.systeme_css_kanban_card_date_icon {
  width: 12px;
  height: 12px;
}

/** ORGCHART **/
.systeme_css_orgchart_scroller {
    padding: 24px;
}
.systeme_css_orgchart_header_title {
    font-weight: 700;
    font-size: 1.1rem;
    padding-left: 4px;
}
.systeme_css_orgchart_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.systeme_css_orgchart_directors_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    width: 100%;
}
.systeme_css_orgchart_director_tile {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    flex: 1 1 200px;
    cursor: pointer !important;
    padding: 16px 12px !important;
}
.systeme_css_orgchart_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.systeme_css_orgchart_tile_name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    word-break: break-word;
}
.systeme_css_orgchart_tile_role {
    font-size: 0.8rem;
    line-height: 1.3;
    word-break: break-word;
}
.systeme_css_orgchart_tree_stem {
    width: 2px;
    height: 32px;
    margin: 6px 0;
}
.systeme_css_orgchart_dg_row {
    display: flex;
    justify-content: center;
    width: 100%;
}
.systeme_css_orgchart_dg_tile {
    width: 220px;
    max-width: 240px;
}
.systeme_css_orgchart_ca_row {
    display: flex;
    justify-content: center;
    width: 100%;
}
.systeme_css_orgchart_ca_card {
    width: 100%;
    max-width: 600px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
}

/** PLAN ARCHIVES **/
.systeme_css_archive_section_title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.systeme_css_archive_card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-sizing: border-box;
}
.systeme_css_archive_card_header {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.systeme_css_archive_card_header_right_icon {
    margin-left: auto;
}
.systeme_css_archive_info_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 24px;
}
.systeme_css_archive_info_item {
  display: flex;
  flex-direction: column;
}
.systeme_css_archive_info_label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.systeme_css_archive_info_value {
  font-size: 0.875rem;
  font-weight: 400;
  word-break: break-word;
}
.systeme_css_archive_list {
  margin: 0;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  list-style-type: disc;
}
.systeme_css_archive_text_block {
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: break-word;
}

/** ARCHIVES COMPARISON VIEW **/
.systeme_css_archive_compare_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.systeme_css_archive_compare_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid #0F172A;
}
.systeme_css_archive_compare_header_title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.systeme_css_archive_compare_body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.systeme_css_archive_compare_section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E2E8F0;
}
.systeme_css_archive_compare_section_title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.systeme_css_archive_compare_row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 8px;
  box-sizing: border-box;
}
.systeme_css_archive_compare_col {
  flex: 1 0 300px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.systeme_css_archive_compare_year {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.systeme_css_archive_compare_content {
  font-size: 0.85rem;
  line-height: 1.6;
}
.systeme_css_archive_compare_ul {
  margin: 0;
  padding-left: 18px;
  list-style-type: disc;
}
.systeme_css_archive_compare_text {
  word-break: break-word;
}
.systeme_css_archive_compare_empty {
  font-style: italic;
  font-size: 0.8rem;
}

/** PLAN **/
.systeme_css_plan_details_layout {
    display: flex;
    position: relative;
    flex: 1;
    min-height: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.systeme_css_plan_details_main {
    flex: 1;
    min-height: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: margin-right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.systeme_css_plan_details_grid_half {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.systeme_css_plan_details_sidebar {
    width: 320px;
    min-width: 320px;
    height: 100%;
    position: absolute;
    right: -320px;
    top: 0;
    z-index: 450;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.systeme_css_plan_details_layout.sidebar-open .systeme_css_plan_details_sidebar {
    right: 0;
}
/* Écran Desktop (>= 1024px) : Pousse le contenu principal */
@media screen and (min-width: 1024px) {
    .systeme_css_plan_details_layout.sidebar-open .systeme_css_plan_details_main {
        margin-right: 320px;
    }
}
/* Écran Mobile/Tablette (< 1024px) : S'ouvre par-dessus le contenu */
@media screen and (max-width: 1023px) {
    .systeme_css_plan_details_layout.sidebar-open .systeme_css_plan_details_main {
        margin-right: 0;
    }
    .systeme_css_plan_details_sidebar {
        z-index: 500;
    }
}
.systeme_css_plan_sidebar_header {
    height: 52px;
    min-height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.95rem;
    box-sizing: border-box;
}
.systeme_css_plan_sidebar_header_title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.systeme_css_plan_sidebar_body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}
.systeme_css_plan_sidebar_footer {
    padding: 12px 16px;
    box-sizing: border-box;
}
.systeme_css_plan_comments_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.systeme_css_plan_comment_card {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}
.systeme_css_plan_comment_header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 4px;
}
.systeme_css_plan_comment_date {
    font-size: 0.75rem;
    font-weight: 400;
}
.systeme_css_plan_comment_text {
    font-weight: 400;
}
.systeme_css_plan_toolbar_title {
    font-size: 1.05rem;
    font-weight: 700;
}
.systeme_css_plan_toolbar_select {
    width: 220px;
    font-weight: 700;
}
.systeme_css_plan_comment_textarea {
    height: 80px;
    margin-bottom: 10px;
}
.systeme_css_plan_objectifs_item {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
}
.systeme_css_plan_objectifs_item_title {
    font-weight: 700;
}
.systeme_css_plan_objectifs_item_critere {
    font-size: 0.85rem;
    margin-top: 4px;
}
.systeme_css_plan_objectifs_moyens_list {
    margin-top: 6px;
    padding-left: 20px;
    font-size: 0.85rem;
}

/** TEXT **/
.systeme_css_text_clickable { cursor: pointer; }
.systeme_css_text_clickable:hover { text-decoration: underline; }
.systeme_css_decision_texte_approved { font-weight:700;font-size:90%; }
.systeme_css_decision_texte_denied { font-weight:700;font-size:90%; }
.systeme_css_decision_texte_analyse { font-weight:700;font-size:90%; }
.systeme_css_decision_texte_info { font-weight:700;font-size:90%; }

/** ICONS **/
svg.lucide { stroke-width: 1px; }
.systeme_css_icons_clickable { cursor: pointer; border: 0px; opacity: 0.8; transition: opacity 0.2s ease-in-out, transform 0.4s ease-in-out; }
.systeme_css_icons_clickable:hover { transform: scale(1.1); opacity: 1; }
.systeme_css_icons_very_big { width: 64px; height: 64px; }
.systeme_css_icons_big { width: 36px; height: 36px; }
.systeme_css_icons { width: 24px; height: 24px; }
.systeme_css_icons_small { width: 16px; height: 16px; }
.systeme_css_icons_selected { padding-bottom: 2px; opacity: 1.0; }
.systeme_css_icons_strong { stroke-width: 3px; }

/** GRID **/
.systeme_css_grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 20px; padding-left: 12px; justify-content: center; }
.systeme_css_grid_item { display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: transform 0.2s ease; }
.systeme_css_grid_item:hover { transform: scale(1.1); }
.systeme_css_grid_item_content { width: 48px; height: 48px; border-radius: 12px; display: flex; justify-content: center; align-items: center; }
.systeme_css_grid_item_subtitle { font-size: 75%; font-weight: 300; }
.systeme_css_grid_item_subtitle.faded { opacity: 0.5; }

/** TABLE **/
.systeme_css_tablestd { border-collapse: collapse; border-spacing: 0px; }
.systeme_css_tablestdW { border-collapse: collapse; border-spacing: 0px; width: 100%; }
.systeme_css_tablestdH { border-collapse: collapse; border-spacing: 0px; height: 100%; }
.systeme_css_tablestdWH { border-collapse: collapse; border-spacing: 0px; width: 100%; height: 100%; }

/** LIST **/
.systeme_css_list_table_container { overflow: auto; }
.systeme_css_list_table { table-layout: fixed; border-collapse: collapse; border-spacing: 0px; width: 100%; }
.systeme_css_list_table thead th, .systeme_css_list_table tbody td { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.systeme_css_list_table thead th { position: sticky; top: 0px; height: 36px; padding-left: 4px; padding-right: 10px; text-align: left; vertical-align: middle; font-weight: 400; font-size: 75%; z-index: 302; }
.systeme_css_list_table thead th.left { text-align: left; }
.systeme_css_list_table thead th.center { text-align: center; }
.systeme_css_list_table thead th.right { text-align: right; }
.systeme_css_list_table thead th.clickable { cursor: pointer; }
.systeme_css_list_table_tbody_link { cursor: pointer; font-weight: 700; }
.systeme_css_list_table tbody td { height: 36px; padding-right: 4px; vertical-align: middle; font-size: 80%; }
.systeme_css_list_table tbody td.left { text-align: left; }
.systeme_css_list_table tbody td.center { text-align: center; }
.systeme_css_list_table tbody td.right { text-align: right; }
.systeme_css_list_table tbody td.clickable { font-weight: bold; cursor: pointer; }
.systeme_css_list_table tbody td.clickable:hover { text-decoration: underline; }
.systeme_css_list_table tbody td.hoverinfo { cursor: help; }
.systeme_css_list_table tbody tr { z-index: 301; }
.systeme_css_list_table_pastille {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 80%;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.systeme_css_list_table_td_ellipsis { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; width: 360px; min-width: 360px; max-width: 360px; }
.systeme_css_list_table_td_clickable { text-align: left; cursor: pointer; font-weight: 700; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.systeme_css_list_table_td_clickable:hover { text-decoration: underline; }
.systeme_css_list_table_loading_noresults { font-size: 80%; font-style: italic; }

/** FORM **/
.read-only-mode .systeme_css_FORM_input_std {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px transparent !important;
    color: #1E293B !important;
    pointer-events: none;
    padding-left: 0;
}
.read-only-mode .systeme_css_icon_delete,
.read-only-mode .systeme_css_icon_save,
.read-only-mode .systeme_css_hide_on_readonly {
    display: none !important;
}

.systeme_css_btn_selector_off { padding-top: 4px; padding-bottom: 4px; padding-left: 12px; padding-right: 12px; border-radius: 6px; white-space: nowrap; font-size: 85%; font-weight: 700; cursor: pointer; }
.systeme_css_btn_selector_on { padding-top: 4px; padding-bottom: 4px; padding-left: 12px; padding-right: 12px; border-radius: 6px; white-space: nowrap; font-size: 85%; font-weight: 700; }

.systeme_css_FORM_header_title { font-size: 100%; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.systeme_css_FORM_grid_layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
.systeme_css_FORM_grid_layout_title { font-size: 80%; font-weight: 300; width: 80px; max-width: 80px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.systeme_css_FORM_grid_layout_input { padding-left: 6px; padding-right: 4px; outline: none; border-top: 0px; border-left: 0px; border-right: 0px; border-radius: 4px; width: 100%; height: 30px; }
.systeme_css_FORM_grid_layout_input.select { appearance: none; -webkit-appearance: none; -moz-appearance: none; width: 100%; display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
input, select { box-sizing: border-box; }

::placeholder { font-size: 80%; }

.systeme_css_form_field_title { font-size: 80%; }
.systeme_css_form_field_error_label { height: 16px; font-weight: bold; font-size: 70%; }
.systeme_css_FORM_input_invisible { width:calc(100% - 24px); height: 30px; outline: none; font-size: 100%; background-color: transparent; border: 0px; }
.systeme_css_FORM_input_std { padding-left: 6px; padding-right: 4px; outline: none; font-family: 'Noto'; font-size: 85%; font-weight: 700; width: 100%; height: 44px; }
.systeme_css_FORM_input_std_invalid { border-bottom: 2px solid #A90329; }
textarea { font-family: 'Noto'; resize: none; height: 90px; }
.systeme_css_checkbox { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border-radius: 4px; outline: none; cursor: pointer; position: relative; }
.systeme_css_checkbox:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; transform: rotate(45deg); }
.systeme_css_button { padding-left: 20px; padding-right: 20px; padding-top: 4px; padding-bottom: 4px; min-height: 36px; border-radius: 6px; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; margin-left: auto; margin-right: auto; cursor: pointer; font-size: 100%; font-weight: 700; transition: filter 0.2s ease, opacity 0.2s ease, transform 0.1s ease; }

@media print {
    /* Hide non-printable elements */
    .systeme_css_view_toolbar,
    .systeme_css_button,
    .systeme_css_icons_clickable {
        display: none !important;
    }

    /* Archive Card Printing Rules */
    .systeme_css_archive_card {
        box-shadow: none !important;
        border: 1px solid #CBD5E1 !important;
        break-inside: avoid !important;
        page-break-inside: avoid !important;
        margin-bottom: 14px !important;
        padding: 14px 18px !important;
        background-color: #FFFFFF !important;
        display: block !important;
    }

    .systeme_css_archive_section_title {
        font-size: 1.1rem !important;
        margin-bottom: 16px !important;
        padding-bottom: 6px !important;
        border-bottom: 2px solid #0F172A !important;
        text-align: center;
        text-transform: uppercase;
    }

    .systeme_css_archive_info_grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 20px !important;
    }

    .systeme_css_archive_info_label {
        color: #475569 !important;
        font-size: 0.7rem !important;
    }

    .systeme_css_archive_info_value {
        color: #0F172A !important;
        font-size: 0.85rem !important;
    }
}

/** Media Queries to Adjust ScreenWidth/BreakPoints **/
@media screen and (max-width: 1023px) {
    .systeme_css_main_container { display: block !important; width: 100%; }
    #systeme_id_pane_center { width: 100% !important; height: 100%; }
    #systeme_id_pane_left { 
      position: absolute !important; 
      top: 0; 
      left: 0; 
      height: 100%; 
      width: var(--left-pane-width) !important; 
      min-width: var(--left-pane-width) !important; 
      max-width: var(--left-pane-width) !important; 
      z-index: 1040; 
      transform: translateX(calc(var(--left-width, var(--left-pane-width)) - var(--left-pane-width))); 
      transition: transform 320ms ease-in-out; 
    }
  
  .systeme_css_orgchart_directors_row {
        flex-direction: column;
        align-items: center;
    }

    .systeme_css_orgchart_director_tile,
    .systeme_css_orgchart_dg_tile,
    .systeme_css_orgchart_ca_card {
        width: 100%;
        max-width: 320px;
    }
}
@media screen and (min-width: 720px) {
	.systeme_css_FORM_grid_layout { grid-template-columns: repeat(2, 1fr); }
}