:root{
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #fbfcfe;
  --surface-3: #f1f4f9;
  --line: #dbe3ee;
  --line-2: #e8edf4;
  --text: #172b4d;
  --text-2: #4f6482;
  --text-3: #7c8ca5;
  --sidebar: #121a2a;
  --sidebar-2: #182338;
  --primary: #2563eb;
  --primary-2: #1d4ed8;
  --primary-soft: #e8f0ff;
  --warning-soft: #fff5df;
  --warning-text: #9a5a00;
  --shadow: 0 8px 24px rgba(16,24,40,.06);
  --shadow-lg: 0 18px 40px rgba(16,24,40,.10);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 12px;
  --radius-sm: 10px;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
}

body{
  min-height: 100vh;
}

a{
  text-decoration: none;
  color: inherit;
}

.workspace-shell{
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.workspace-sidebar{
  width: 248px;
  background: linear-gradient(180deg, var(--sidebar) 0%, var(--sidebar-2) 100%);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-top{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-block{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(37,99,235,.28);
}

.brand-name{
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-env{
  font-size: 11px;
  color: rgba(255,255,255,.62);
}

.nav-stack{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-link-side{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 13px;
  transition: .18s ease;
}

.nav-link-side i{
  font-size: 15px;
}

.nav-link-side:hover{
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav-link-side.active{
  background: rgba(37,99,235,.20);
  color: #fff;
  border: 1px solid rgba(147,197,253,.22);
}

.sidebar-bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}

.user-card-side{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.user-card-icon{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  font-size: 18px;
}

.user-card-copy{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.user-card-label{
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.56);
}

.user-card-name{
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  word-break: break-word;
}

.btn-logout-side{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}

.btn-logout-side:hover{
  background: rgba(255,255,255,.14);
  color: #fff;
}

/* Main */
.workspace-main{
  flex: 1;
  min-width: 0;
  padding: 20px;
}

.workspace-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.workspace-overline{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.workspace-title{
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
}

.workspace-subtitle{
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-2);
}

.workspace-header-actions{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.view-switch-card{
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: var(--shadow);
}

.mini-label{
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 6px;
}

.select-inline{
  position: relative;
}

.select-inline i{
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  z-index: 2;
  font-size: 13px;
}

.select-inline .form-select{
  padding-left: 32px;
  min-height: 36px;
}

.btn-header-action{
  min-height: 38px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  padding-inline: 14px;
}

/* Toolbar */
.toolbar-panel{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.toolbar-left{
  margin-bottom: 12px;
}

.toolbar-title{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.toolbar-caption{
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-2);
}

.toolbar-grid{
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 180px;
  gap: 12px;
  align-items: end;
}

.toolbar-field .form-label{
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.field-with-icon{
  position: relative;
}

.field-with-icon i{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  z-index: 2;
  font-size: 13px;
}

.field-with-icon .form-select{
  padding-left: 36px;
}

.mode-badge-line{
  min-height: 40px;
  display: flex;
  align-items: center;
}

.mode-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.mode-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
}

/* Inputs */
.form-control,
.form-select{
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  box-shadow: none;
}

.form-control-sm,
.form-select-sm{
  min-height: 36px;
  font-size: 12px;
}

.form-control:focus,
.form-select:focus{
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.custom-select-button{
  min-height: 40px;
  border-radius: 12px;
  font-size: 13px;
}

/* Dropdown estados */
.state-dropdown-wrap{
  position: relative;
}

.state-dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  overflow: hidden;
}

.state-dropdown-head{
  padding: 11px 13px 8px;
  border-bottom: 1px solid var(--line-2);
  font-size: 12px;
  font-weight: 800;
  color: var(--text);
}

.state-options{
  max-height: 220px;
  overflow: auto;
  padding: 8px 10px 4px;
}

.state-options .form-check{
  padding: 6px 6px 6px 26px;
  border-radius: 10px;
}

.state-options .form-check:hover{
  background: var(--surface-3);
}

.state-options .form-check-label{
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.state-dropdown-actions{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 12px;
  border-top: 1px solid var(--line-2);
  background: var(--surface-2);
}

/* Sections */
.board-section{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 14px 14px 8px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.section-head h3{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.section-head p{
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-2);
}

.cards-section{
  margin-top: 0;
}

/* Table */
.board-table-wrap{
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
}

.task-table{
  margin-bottom: 0;
}

.task-table thead th{
  background: #f7f9fc;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  padding: 12px 14px;
  white-space: nowrap;
}

.task-table tbody td{
  padding: 12px 14px;
  border-color: var(--line-2);
  font-size: 13px;
  vertical-align: middle;
}

.task-table tbody tr:hover{
  background: #fafcff;
}

.task-table tbody td:first-child{
  font-weight: 700;
  color: var(--text-2);
}

.task-table tbody td:nth-child(2){
  font-weight: 700;
}

.task-table .btn{
  border-radius: 9px;
  padding: .32rem .48rem;
  font-size: 12px;
}

/* Estado / prioridad */
.estado-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid transparent;
}

.estado-badge::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
}

.estado-pendiente{
  background: #fff7d6;
  color: #a66b00;
  border-color: #f3d266;
}

.estado-revision{
  background: #ede9fe;
  color: #6d28d9;
  border-color: #c4b5fd;
}

.estado-qa{
  background: #e0f2fe;
  color: #0369a1;
  border-color: #7dd3fc;
}

.estado-compleada{
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
}

.estado-default{
  background: #eef2f7;
  color: #51627a;
  border-color: #d7dfeb;
}

.prioridad-pill{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #dfe7f2;
  font-size: 11px;
  font-weight: 700;
}

/* Tarjetas */
#tareasTarjetas .card{
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

#tareasTarjetas .card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(16,24,40,.10);
  border-color: #bfd0e6;
  cursor: pointer;
}

#tareasTarjetas .card .card-body{
  padding: 14px;
}

#tareasTarjetas .card-title{
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  padding-right: 18px;
}

#tareasTarjetas .card-text{
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 6px !important;
}

#tareasTarjetas .card-text strong{
  color: var(--text);
}

.priority-line{
  height: 4px;
  border-radius: 0 0 16px 16px;
}

/* Modals */
.task-modal{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(15,23,42,.18);
}

.modal-header-primary-clean{
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.modal-header-warning-clean{
  background: var(--warning-soft);
  border-bottom: 1px solid #f3dfaf;
  padding: 16px 20px;
}

.modal-header-secondary-clean{
  background: #f5f7fa;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.modal-kicker{
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--text-3);
  margin-bottom: 4px;
}

.task-modal .modal-title{
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.task-modal .modal-body{
  padding: 20px;
}

.task-modal-footer{
  background: #fafbfd;
  border-top: 1px solid var(--line-2);
  padding: 12px 20px;
}

.modal-divider{
  margin: 18px 0;
  border-color: var(--line-2);
}

.module-block{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px;
  background: #fcfdff;
}

.module-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.module-head h6{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.module-head p{
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-2);
}

.compact-switch-row{
  display: flex;
  align-items: center;
  min-height: 46px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 0;
}

.compact-switch-row .form-check-input{
  margin-top: 0;
  margin-right: 10px;
  float: none;
}

.compact-switch-row .form-check-label{
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.progress-box{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
}

.progress-number{
  font-weight: 800;
  color: var(--primary-2);
}

.progress-thin{
  height: 8px;
  background: #e9eef6;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar{
  background: linear-gradient(90deg, var(--primary), #60a5fa);
}

.editor-note-space{
  border-radius: 12px;
  overflow: hidden;
}

/* Lists */
#listaChecklist .list-group-item,
#listaComentarios .list-group-item{
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 11px 12px;
  background: #fff;
  font-size: 13px;
}

#listaChecklist .list-group-item:last-child,
#listaComentarios .list-group-item:last-child{
  margin-bottom: 0;
}

.ordenNumero{
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: #dbeafe !important;
  color: #1d4ed8 !important;
}

.dragHandle{
  color: var(--text-3);
}

.comment-input-row{
  align-items: center;
}

/* Buttons */
.btn{
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.btn-sm{
  font-size: 12px;
}

.btn-primary{
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover{
  background: var(--primary-2);
  border-color: var(--primary-2);
}

.btn-outline-primary{
  color: var(--primary);
  border-color: #b8cdf8;
  background: #fff;
}

.btn-outline-primary:hover{
  background: var(--primary-soft);
  color: var(--primary-2);
  border-color: #93b7fb;
}

.btn-outline-secondary{
  color: var(--text-2);
  border-color: #ced8e5;
}

.btn-outline-secondary:hover{
  background: #f2f6fb;
  color: var(--text);
}

/* Alerts */
#alertContainer .alert{
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
  font-size: 13px;
  font-weight: 700;
}

/* Quill */
.ql-toolbar.ql-snow{
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-color: var(--line);
}

.ql-container.ql-snow{
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-color: var(--line);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 1200px){
  .toolbar-grid{
    grid-template-columns: 1fr 1fr;
  }

  .toolbar-field-status{
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px){
  .workspace-shell{
    flex-direction: column;
  }

  .workspace-sidebar{
    width: 100%;
    height: auto;
    position: relative;
    padding: 14px;
  }

  .nav-stack{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .workspace-main{
    padding: 16px;
  }

  .workspace-header{
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px){
  html, body{
    font-size: 13px;
  }

  .workspace-title{
    font-size: 22px;
  }

  .toolbar-grid{
    grid-template-columns: 1fr;
  }

  .task-modal .modal-body,
  .task-modal-footer{
    padding: 14px;
  }

  .module-head{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   GLOBAL LOADER
========================= */

.app-loader-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.app-loader-overlay.is-visible{
  opacity: 1;
  visibility: visible;
}

.app-loader-box{
  min-width: 220px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.app-loader-spinner{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #dbeafe;
  border-top-color: #2563eb;
  animation: appLoaderSpin .8s linear infinite;
}

.app-loader-text{
  font-size: 13px;
  font-weight: 700;
  color: #172b4d;
  text-align: center;
}

@keyframes appLoaderSpin{
  to{
    transform: rotate(360deg);
  }
}

/* =========================
   Gestión por usuario / perfil admin
========================= */
.user-admin-panel{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 460px) auto;
  gap: 14px;
  align-items: end;
}

.user-admin-control .form-label{
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.user-admin-status{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
}

.mode-badge.is-admin{
  background: #eef6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.mode-badge.is-admin .mode-dot{
  background: #2563eb;
}

.mode-badge.is-common{
  background: #f8fafc;
  border-color: var(--line);
  color: var(--text-2);
}

.mode-badge.is-common .mode-dot{
  background: #64748b;
}

.usuario-context-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
}

.comment-author-badge{
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  font-size: 10px;
  font-weight: 800;
  margin-left: 6px;
  vertical-align: middle;
}

.comment-author-badge.owner{
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

@media (max-width: 992px){
  .user-admin-panel{
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .user-admin-status{
    justify-content: flex-start;
  }
}


/* =========================
   v18 - Sidebar colapsable y columnas de avance
========================= */
.workspace-sidebar{
  transition: width .18s ease, padding .18s ease;
}

.sidebar-collapse-btn{
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  transition: .18s ease;
}

.sidebar-collapse-btn:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
}

.sidebar-collapse-btn i{
  font-size: 16px;
}

body.sidebar-collapsed .workspace-sidebar{
  width: 88px;
  padding-left: 12px;
  padding-right: 12px;
}

body.sidebar-collapsed .brand-block{
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

body.sidebar-collapsed .brand-copy,
body.sidebar-collapsed .nav-link-side span,
body.sidebar-collapsed .sidebar-collapse-btn span,
body.sidebar-collapsed .user-card-copy,
body.sidebar-collapsed .btn-logout-side{
  display: none;
}

body.sidebar-collapsed .nav-link-side{
  justify-content: center;
  padding: 12px;
}

body.sidebar-collapsed .nav-link-side i{
  font-size: 17px;
}

body.sidebar-collapsed .sidebar-collapse-btn{
  justify-content: center;
  padding: 9px;
}

body.sidebar-collapsed .sidebar-bottom{
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.sidebar-collapsed .user-card-side{
  margin-bottom: 12px;
}

.task-table{
  min-width: 1280px;
}

.task-date-cell{
  white-space: nowrap;
  font-weight: 700;
  color: var(--text-2);
}

.task-description-cell{
  min-width: 260px;
  max-width: 420px;
  line-height: 1.35;
}

.actions-cell{
  white-space: nowrap;
}

.completion-cell{
  min-width: 118px;
}

.completion-topline{
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}

.completion-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 11px;
  font-weight: 900;
}

.completion-detail{
  color: var(--text-3);
  font-size: 11px;
  font-weight: 800;
}

.completion-track{
  height: 7px;
  width: 100%;
  border-radius: 999px;
  background: #e8edf4;
  overflow: hidden;
}

.completion-bar{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

@media (max-width: 992px){
  body.sidebar-collapsed .workspace-sidebar{
    width: 100%;
  }

  body.sidebar-collapsed .brand-copy,
  body.sidebar-collapsed .nav-link-side span,
  body.sidebar-collapsed .sidebar-collapse-btn span,
  body.sidebar-collapsed .user-card-copy,
  body.sidebar-collapsed .btn-logout-side{
    display: inline;
  }

  body.sidebar-collapsed .nav-link-side{
    justify-content: flex-start;
  }
}
