* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 70% 5%, rgba(232, 255, 242, 0.85) 0%, transparent 24%),
        linear-gradient(135deg, #eef5f4 0%, #dcecea 100%);
    color: #1d3142;
}

body::before {
    content: "";
    position: fixed;
    inset: -120px;
    background-image: radial-gradient(rgba(39, 149, 118, 0.10) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

.app-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #122b35 0%, #173b43 100%);
    color: #d9f4eb;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #1bb68d;
    color: white;
}

.brand-icon svg {
    width: 24px;
    height: 24px;
}

.nav {
    margin-top: 56px;
}

.nav-section {
    margin-bottom: 34px;
}

.nav-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #99d7ca;
    margin-bottom: 12px;
}

.nav-item {
    text-decoration: none;
    color: #bfdad7;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 7px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-item svg {
    width: 20px;
    height: 20px;
}

.nav-item:hover,
.nav-item.active {
    color: #ffffff;
    background: linear-gradient(90deg, #1bb68d 0%, #148f75 100%);
    transform: translateX(2px);
}

.nav-icon {
    display: inline-flex;
    align-items: center;
}

.plan-card {
    margin-top: auto;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #34d399;
    border: 2px solid #a7f3d0;
}

.plan-storage {
    margin-top: 16px;
}

.storage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #b2ded7;
}

.progress-bar {
    margin-top: 8px;
    height: 9px;
    border-radius: 30px;
    background: #315a52;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #21cfad, #77d491);
}

.btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    margin-top: 14px;
}

.btn-light {
    background: white;
    color: #194a4c;
}

.btn-primary {
    background: linear-gradient(135deg, #1b8a73, #20b28a);
    color: white;
}

.btn-ghost {
    background: #eef9f5;
    color: #145448;
    border: 1px solid #d9eee6;
}

.btn-icon {
    background: transparent;
    border: 1px solid #d7e8e6;
    color: #215b69;
}

.btn.small {
    padding: 8px 14px;
    font-size: 11px;
}

.icon-left {
    margin-right: 6px;
}

.main-content {
    flex: 1;
    padding: 32px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 999px;
    border: 1px solid #cbe3df;
    padding: 9px 14px;
    min-width: min(34vw, 280px);
    box-shadow: inset 0 1px 2px rgba(30, 89, 80, 0.05);
}

.search-box svg {
    width: 18px;
    height: 18px;
    color: #668a80;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 13px;
}

.notification-button {
    position: relative;
    padding-inline: 14px;
}

.badge-count {
    position: absolute;
    top: -7px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ea6d54;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid #fff;
}

.page-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 700;
    color: #56a887;
}

.topbar h1 {
    margin-top: 6px;
    font-size: 36px;
    line-height: 1;
    color: #173b40;
}

.workspace-status {
    margin-top: 24px;
}

.workspace-status-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #153b40, #1b544a);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 24px rgba(34, 72, 64, 0.10);
}

.workspace-status-bar .status-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #90cdbd;
}

.status-text {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 800;
}

.status-text .health-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #83f1b3;
    margin-right: 8px;
    vertical-align: middle;
}

.mini-divider {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,0.24);
}

.workspace-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-cards {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 16px;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #ddece9;
    box-shadow: 0 6px 20px rgba(34, 72, 64, 0.05);
}

.summary-card.highlight {
    background: linear-gradient(135deg, #163b41, #1f6a52);
    color: white;
}

.card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-head .icon-wrap {
    width: 36px;
    height: 36px;
    background: #ecfcf6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #165a54;
}

.summary-card.highlight .icon-wrap {
    background: #fff;
    color: #165a54;
}

.card-head svg {
    width: 22px;
    height: 22px;
}

.tag {
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tag.soft {
    color: #6d8887;
}

.summary-card.highlight .tag {
    color: #adf7d7;
}

.metric-row {
    margin-top: 20px;
}

.metric-number {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #173436;
}

.summary-card.highlight .metric-number {
    color: white;
}

.metric-label {
    margin-top: 12px;
    font-size: 11px;
    color: #6f8792;
}

.summary-card.highlight .metric-label {
    color: #b9eee2;
}

.trend {
    display: inline-block;
    margin-top: 13px;
    font-size: 11px;
    font-weight: 700;
}

.trend.up {
    color: #10886e;
}

.trend.warn {
    color: #b76811;
}

.sync-text {
    font-size: 17px;
}

.content-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(620px, 2fr) minmax(260px, 0.9fr);
    gap: 24px;
}

.panel {
    background: white;
    border-radius: 20px;
    border: 1px solid #dcece9;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(34, 72, 64, 0.06);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-header.compact {
    align-items: flex-start;
}

.panel-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    color: #193a35;
}

.panel-subtitle {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #859b99;
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-list {
    margin-top: 24px;
}

.doc-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #edf2f2;
}

.doc-row:first-child {
    border-top: none;
}

.doc-type {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: white;
}

.doc-type.pdf { background: #ea6d54; }
.doc-type.doc { background: #248f81; }
.doc-type.word { background: #607ecf; }
.doc-type.xls { background: #b28b20; }
.doc-type.img { background: #a15a95; }

.doc-details {
    margin-left: 14px;
    flex: 1;
}

.doc-name {
    font-size: 15px;
    font-weight: 700;
    color: #1d3b47;
}

.doc-meta {
    margin-top: 4px;
    font-size: 11px;
    color: #738c8f;
}

.doc-status {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.status-ready {
    background: #d4f8e8;
    color: #117955;
}

.status-review {
    background: #fff0d8;
    color: #aa6812;
}

.status-saved {
    background: #DDF7F3;
    color: #156d69;
}

.status-process {
    background: #eee7ff;
    color: #6146a4;
}

.status-archive {
    background: #dee9ed;
    color: #69868a;
}

.quick-panel {
    min-height: 100%;
}

.action-detail {
    margin-top: 26px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eafcf6, #ffffff);
    border: 1px solid #bdede3;
}

.action-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #516f68;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.small-icon {
    padding: 6px 10px;
}

.action-detail-body {
    margin-top: 10px;
}

.action-title-main {
    font-size: 24px;
    line-height: 1;
    color: #173b40;
    font-weight: 800;
}

.action-detail-text {
    margin-top: 10px;
    font-size: 12px;
    color: #607b77;
}

.icon-button {
    border: 1px solid #dbecea;
    background: #fbffff;
    border-radius: 8px;
    padding: 8px 12px;
    color: #3b636a;
}

.quick-list {
    margin-top: 26px;
}

.quick-action {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #edf2f1;
    text-align: left;
    cursor: pointer;
}

.quick-action:last-child {
    border-bottom: none;
}

.quick-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dcf8ee;
    color: #126f55;
    font-size: 20px;
}

.action-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #193942;
}

.action-text {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #829b93;
}

.analytics-row {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
    gap: 24px;
}

.segmented {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
    background: #eef9f4;
}

.segmented button {
    border: none;
    background: transparent;
    padding: 7px 12px;
    font-size: 11px;
    color: #738d85;
}

.segmented button.active {
    background: #173b43;
    color: white;
    border-radius: 8px;
}

.chart-area {
    height: 190px;
    margin-top: 24px;
}

.chart-bars {
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.chart-bars div {
    flex: 1;
    background: linear-gradient(180deg, #1caf89, #a8dfcc);
    border-radius: 8px 8px 2px 2px;
    min-height: 20px;
}

.forms-panel {
    background: linear-gradient(180deg, #fbffff, #eefbfa);
}

.document-form {
    margin-top: 24px;
}

.form-row {
    margin-bottom: 16px;
}

.formation-panel {
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #bbd9d6;
    background: linear-gradient(180deg, #ffffff, #eefbfa);
}

.formation-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formation-title {
    font-size: 13px;
    font-weight: 900;
    color: #173b40;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.word-count {
    font-size: 11px;
    color: #6b8782;
    font-weight: 800;
}

.format-toolbar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.format-button {
    border: 1px solid #bfdcd7;
    background: white;
    color: #20474b;
    padding: 7px 12px;
    border-radius: 9px;
    font-weight: 800;
    cursor: pointer;
}

.format-button:hover,
.format-button:focus {
    background: #d8f4e9;
    outline: none;
}

.format-button.is-active {
    background: #1b8a73;
    border-color: #1b8a73;
    color: white;
}

.format-toolbar select {
    width: auto;
    min-width: 150px;
}

.document-editor {
    margin-top: 14px;
    min-height: 160px;
    border-radius: 12px;
    border: 1px solid #bdcec9;
    background: white;
    padding: 16px;
    color: #254b48;
    line-height: 1.6;
    outline: none;
}

.document-editor h1,
.document-editor h2,
.document-editor h3 {
    margin-bottom: 10px;
}

.document-editor p {
    margin-bottom: 10px;
}

.document-editor ul {
    padding-left: 25px;
}

.document-output {
    margin-top: 14px;
}

.document-status-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.doc-status-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.small-label {
    font-size: 9px;
    color: #718987;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.meta-value {
    font-weight: 800;
    font-size: 11px;
    color: #173b40;
}

.output-controls {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.export-format-select,
.document-status-select {
    border-radius: 10px;
    border: 1px solid #bfdcd7;
    background: white;
    color: #183c3d;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 800;
}

.quality-status {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #eefaf5;
    border: 1px solid #bfe3dd;
}

.quality-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quality-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #496d69;
}

.quality-score {
    font-size: 12px;
    font-weight: 900;
    color: #176d58;
}

.quality-bar-wrap {
    margin-top: 10px;
}

.quality-bar {
    height: 10px;
    overflow: hidden;
    background: #d9eee9;
    border-radius: 999px;
}

.quality-fill {
    height: 100%;
    background: linear-gradient(90deg, #19a985, #80d8a3);
}

.quality-text {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 800;
    color: #637e7b;
}

.preview-panel {
    display: none;
    margin-top: 14px;
    background: #173b43;
    border-radius: 14px;
    color: white;
    overflow: hidden;
}

.preview-panel.open {
    display: block;
}

.preview-header {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1d585b;
    font-size: 12px;
    font-weight: 800;
}

.preview-content {
    padding: 14px;
    min-height: 160px;
    font-size: 12px;
    line-height: 1.7;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 1fr);
    gap: 14px;
}

label span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #557a76;
    margin-bottom: 8px;
}

input, select {
    width: 100%;
    border: 1px solid #ccdedd;
    border-radius: 10px;
    background: white;
    padding: 11px 12px;
    font: inherit;
}

.upload-zone {
    border: 1px dashed #6cb9a5;
    border-radius: 14px;
    padding: 18px;
    background: #ecfbf7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-zone:hover {
    background: #daf9f0;
    border-color: #11856e;
}

.upload-zone input[type="file"] {
    display: none;
}

.upload-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.upload-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #114a44;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.upload-title {
    display: block;
    font-size: 13px;
    color: #143b3c;
    font-weight: 800;
}

.upload-subtitle {
    display: block;
    font-size: 10px;
    color: #718d8e;
    margin-top: 4px;
}

.actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.bottom-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
    gap: 24px;
}

.insights-row {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
    gap: 24px;
}

.status-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
}

.status-badge.success {
    background: #d4f8e8;
    color: #117955;
}

.status-badge.draft {
    background: #eaf4ff;
    color: #255b9d;
}

.security-list {
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #edf2f1;
}

.security-item:first-child {
    border-top: none;
}

.security-item .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #145a4b;
    background: #dcf8ee;
}

.security-item svg {
    width: 22px;
    height: 22px;
}

.security-title {
    font-weight: 800;
    font-size: 15px;
}

.security-subtitle {
    margin-top: 5px;
    font-size: 11px;
    color: #758b88;
}

.switch {
    margin-left: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.switch input {
    position: absolute;
    opacity: 0;
}

.slider {
    width: 40px;
    height: 22px;
    border-radius: 999px;
    background: #cbd9d7;
    position: relative;
    transition: 220ms ease;
}

.slider:before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    position: absolute;
    left: 3px;
    top: 3px;
}

.switch input:checked + .slider {
    background: #1bb68d;
}

.switch input:checked + .slider:before {
    transform: translateX(18px);
}

.tasks-list {
    margin-top: 20px;
}

.task-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #edf2f1;
}

.task-row:first-child {
    border-top: none;
}

.task-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #1bb68d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.task-check:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1bb68d;
}

.task-row > div {
    flex: 1;
    margin-left: 12px;
}

.task-title {
    font-size: 14px;
    font-weight: 700;
}

.task-meta {
    font-size: 11px;
    color: #78928b;
    margin-top: 4px;
}

.task-priority {
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
}

.task-priority.high {
    background: #fff1e8;
    color: #b7641a;
}

.task-priority.med {
    background: #f8f0d5;
    color: #8a6423;
}

.task-priority.low {
    background: #dffaf2;
    color: #148061;
}

.insight-list {
    margin-top: 22px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid #edf2f1;
}

.insight-item:first-child {
    border-top: none;
}

.insight-item > div {
    flex: 1;
}

.insight-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.insight-icon.success {
    background: #d8f9e9;
    color: #177553;
}

.insight-icon.main {
    background: #d5f0fa;
    color: #1d6e90;
}

.insight-icon.warn {
    background: #fff0d4;
    color: #a76a16;
}

.insight-title {
    font-weight: 800;
    font-size: 14px;
    color: #173b40;
}

.insight-copy {
    margin-top: 6px;
    font-size: 11px;
    color: #738a86;
}

.timeline-list {
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid #edf2f1;
}

.timeline-item:first-child {
    border-top: none;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #1bb68d;
    border: 3px solid #d9f8ea;
    margin-top: 4px;
}

.timeline-title {
    font-size: 14px;
    font-weight: 800;
    color: #173b40;
}

.timeline-time {
    margin-top: 6px;
    font-size: 11px;
    color: #728a88;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 49, 51, 0.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 20;
}

.modal-overlay.open {
    display: flex;
}

.modal-content {
    width: min(100%, 620px);
    background: white;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin-top: 8px;
    font-size: 28px;
    color: #173b40;
}

.modal-close {
    font-size: 30px;
    line-height: 1;
}

.create-form {
    margin-top: 24px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.toast-stack {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #173b43;
    color: white;
    box-shadow: 0 12px 28px rgba(20, 54, 46, 0.28);
    transform: translateY(24px);
    opacity: 0;
    transition: opacity 330ms ease, transform 330ms ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25bd90;
}

.toast-text {
    font-size: 12px;
}

@media (max-width: 980px) {
    .app-shell {
        display: block;
    }

    .sidebar {
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar.collapsed {
        display: none;
    }

    .content-grid,
    .analytics-row,
    .bottom-grid,
    .summary-cards {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 20px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .topbar-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 620px) {
    .main-content {
        padding: 12px;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .search-box {
        min-width: 100%;
    }

    .topbar-actions {
        width: 100%;
    }
}
