:root {
    --gt-navy: #081D3A;
    --gt-blue: #0A66FF;
    --gt-blue-soft: #2684FF;
    --gt-green: #4CAF50;
    --gt-slate: #64748B;
    --gt-bg: #F8FAFC;
    --gt-border: #E2E8F0;
    --gt-card-shadow: 0 12px 30px rgba(8, 29, 58, 0.08);
}

.gt-shell {
    min-height: 100vh;
    display: flex;
    background: var(--gt-bg);
    font-family: "Poppins", Arial, sans-serif;
}

.gt-shell-sidebar {
    width: 270px;
    background: linear-gradient(180deg, #031428 0%, #081d3a 55%, #0a2447 100%);
    color: #fff;
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 40;
}

.gt-shell-main {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gt-shell-content {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 24px;
}

.gt-shell-overlay {
    display: none;
}

.gt-topbar {
    height: 82px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 16px;
}

.gt-topbar-left,
.gt-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gt-topbar-brand {
    color: var(--gt-navy);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.gt-topbar-caption {
    color: var(--gt-slate);
    font-size: 0.82rem;
}

.gt-topbar-menu-button,
.gt-topbar-icon-button {
    border: none;
    background: #fff;
    color: var(--gt-navy);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(8, 29, 58, 0.08);
    position: relative;
}

.gt-topbar-menu-button {
    display: none;
}

.gt-topbar-icon-button i,
.gt-topbar-menu-button i {
    font-size: 1.15rem;
}

.gt-topbar-notification {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.gt-toast {
    position: fixed;
    top: 94px;
    right: 24px;
    z-index: 95;
    min-width: 280px;
    max-width: 420px;
    border-radius: 16px;
    padding: 14px 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(8, 29, 58, 0.18);
    font-weight: 600;
}

.gt-toast-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.gt-user-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px 8px 10px;
    background: #fff;
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(8, 29, 58, 0.08);
    color: var(--gt-navy);
    cursor: pointer;
}

.gt-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gt-blue), var(--gt-blue-soft));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.gt-user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
}

.gt-user-meta strong {
    font-size: 0.92rem;
}

.gt-user-menu {
    position: relative;
}

.gt-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(8, 29, 58, 0.14);
    padding: 8px;
    z-index: 60;
}

.gt-user-dropdown-item {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gt-navy);
    padding: 0 12px;
    font-weight: 500;
}

.gt-user-dropdown-item:hover {
    background: rgba(10, 102, 255, 0.08);
}

.gt-user-dropdown-item.is-danger {
    color: #dc2626;
}

.gt-nav-shell {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 14px 18px;
}

.gt-nav-brand {
    padding: 2px 8px 18px;
}

.gt-nav-brand-logo {
    width: 148px;
    max-width: 100%;
    height: auto;
    display: block;
}

.gt-nav-menu {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.gt-nav-menu::-webkit-scrollbar {
    width: 6px;
}

.gt-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.25);
    border-radius: 999px;
}

.gt-nav-section {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 16px 10px 8px;
}

.gt-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 14px;
    padding: 11px 14px;
    margin-bottom: 4px;
    transition: all 0.18s ease;
    font-size: 0.93rem;
    font-weight: 500;
}

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

.gt-nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--gt-blue), var(--gt-blue-soft));
    box-shadow: 0 12px 22px rgba(10, 102, 255, 0.28);
}

.gt-nav-link i {
    font-size: 1rem;
}

.gt-nav-footer {
    margin-top: 18px;
    padding: 18px 12px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.76rem;
}

.gt-nav-footer-logo {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.gt-nav-footer small {
    font-size: 0.68rem;
    color: rgba(226, 232, 240, 0.62);
}

.gt-dashboard-page {
    display: grid;
    gap: 20px;
}

.gt-company-card,
.gt-widget-card,
.gt-quick-actions,
.gt-kpi-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--gt-card-shadow);
}

.gt-company-card {
    border-radius: 22px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gt-company-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.gt-company-avatar,
.gt-company-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    flex: 0 0 auto;
}

.gt-company-avatar {
    background: linear-gradient(135deg, var(--company-accent), rgba(10, 102, 255, 0.86));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
}

.gt-company-logo {
    object-fit: cover;
    border: 1px solid var(--gt-border);
    background: #fff;
}

.gt-company-summary {
    min-width: 0;
}

.gt-company-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gt-company-name-row h2 {
    margin: 0;
    color: var(--gt-navy);
    font-size: 1.5rem;
    font-weight: 700;
}

.gt-company-legal,
.gt-company-document {
    color: var(--gt-slate);
    font-size: 0.92rem;
}

.gt-company-status {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 600;
}

.gt-company-status.is-active {
    background: rgba(76, 175, 80, 0.15);
    color: #15803d;
}

.gt-company-status.is-inactive {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.gt-company-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 20px;
    min-width: min(320px, 100%);
}

.gt-company-meta-grid span {
    display: block;
    color: var(--gt-slate);
    font-size: 0.76rem;
    margin-bottom: 6px;
}

.gt-company-meta-grid strong {
    color: var(--gt-navy);
    font-size: 0.93rem;
}

.gt-dashboard-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.gt-dashboard-welcome h1 {
    margin: 0 0 4px;
    color: var(--gt-navy);
    font-size: 1.8rem;
    font-weight: 700;
}

.gt-dashboard-welcome p {
    margin: 0;
    color: var(--gt-slate);
}

.gt-dashboard-secondary-button {
    border: 1px solid rgba(10, 102, 255, 0.15);
    background: #fff;
    color: var(--gt-blue);
    border-radius: 14px;
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.gt-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.gt-kpi-card {
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 178px;
}

.gt-kpi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gt-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--kpi-accent);
    background: color-mix(in srgb, var(--kpi-accent) 12%, white);
    font-size: 1.2rem;
}

.gt-kpi-title {
    color: var(--gt-slate);
    font-size: 0.85rem;
    font-weight: 500;
}

.gt-kpi-value {
    color: var(--gt-navy);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.2;
}

.gt-kpi-comparison,
.gt-kpi-trend {
    font-size: 0.82rem;
}

.gt-kpi-trend.is-positive {
    color: #15803d;
}

.gt-kpi-trend.is-negative {
    color: #dc2626;
}

.gt-kpi-comparison {
    color: var(--gt-slate);
}

.gt-kpi-sparkline {
    width: 100%;
    height: 44px;
    margin-top: auto;
}

.gt-kpi-sparkline polyline {
    fill: none;
    stroke: var(--kpi-accent);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-quick-actions {
    border-radius: 22px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.gt-section-heading h3 {
    margin: 0;
    color: var(--gt-navy);
    font-size: 1rem;
    font-weight: 700;
}

.gt-quick-actions-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gt-quick-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
}

.gt-quick-action-primary {
    color: var(--gt-blue);
    background: rgba(10, 102, 255, 0.08);
}

.gt-quick-action-success {
    color: #15803d;
    background: rgba(76, 175, 80, 0.1);
}

.gt-quick-action-violet {
    color: #7c3aed;
    background: rgba(139, 92, 246, 0.1);
}

.gt-quick-action-warning {
    color: #d97706;
    background: rgba(245, 158, 11, 0.12);
}

.gt-quick-action-neutral {
    color: var(--gt-navy);
    background: rgba(100, 116, 139, 0.08);
}

.gt-dashboard-operations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gt-dashboard-analytics {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr) minmax(300px, 0.95fr);
    gap: 16px;
    align-items: start;
}

.gt-widget-card {
    border-radius: 22px;
    padding: 18px 20px;
}

.gt-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.gt-widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gt-navy);
}

.gt-widget-title h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.gt-widget-title i {
    color: var(--gt-blue);
}

.gt-widget-header a,
.gt-alert-content a {
    color: var(--gt-blue);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 600;
}

.gt-widget-subtitle {
    color: var(--gt-slate);
    font-size: 0.82rem;
}

.gt-widget-list,
.gt-orders-table,
.gt-certificate-list,
.gt-alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gt-widget-list-item,
.gt-order-row,
.gt-certificate-item,
.gt-alert-item {
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.gt-widget-list-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
}

.gt-widget-time {
    font-weight: 700;
    color: var(--gt-navy);
}

.gt-widget-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gt-widget-main strong,
.gt-order-client {
    color: var(--gt-navy);
    font-size: 0.92rem;
    font-weight: 600;
}

.gt-widget-main span {
    color: var(--gt-slate);
    font-size: 0.78rem;
}

.gt-status-pill {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    min-height: 30px;
}

.gt-status-pill.is-success {
    background: rgba(34, 197, 94, 0.16);
    color: #15803d;
}

.gt-status-pill.is-warning {
    background: rgba(245, 158, 11, 0.16);
    color: #b45309;
}

.gt-status-pill.is-danger {
    background: rgba(239, 68, 68, 0.14);
    color: #b91c1c;
}

.gt-status-pill.is-neutral {
    background: rgba(100, 116, 139, 0.14);
    color: #475569;
}

.gt-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
}

.gt-order-number {
    color: var(--gt-blue);
    font-weight: 600;
    flex: 0 0 auto;
}

.gt-order-number a {
    color: inherit;
    text-decoration: none;
}

.gt-order-number a:hover {
    text-decoration: underline;
}

.gt-order-value {
    color: var(--gt-navy);
    font-weight: 600;
    text-align: right;
}

.gt-order-main,
.gt-order-financial {
    min-width: 0;
}

.gt-order-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-order-top,
.gt-order-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.gt-order-client-name,
.gt-order-meta span,
.gt-order-payment {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gt-order-client-name {
    color: var(--gt-navy);
    font-size: 0.88rem;
    font-weight: 600;
}

.gt-order-meta span,
.gt-order-payment {
    color: var(--gt-slate);
    font-size: 0.76rem;
}

.gt-order-financial {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.gt-certificate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
}

.gt-certificate-item-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gt-navy);
    font-weight: 600;
}

.gt-certificate-item strong {
    color: var(--gt-blue);
}

.gt-widget-main small {
    color: #64748b;
    font-size: 0.78rem;
}

.gt-chart-card {
    min-height: 360px;
}

.gt-line-chart-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gt-line-chart {
    width: 100%;
    height: 240px;
}

.gt-line-chart-grid line,
.gt-line-chart-axis line {
    stroke: rgba(148, 163, 184, 0.22);
    stroke-width: 1;
}

.gt-line-chart-series {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gt-line-chart-legend,
.gt-line-chart-labels {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gt-line-chart-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gt-slate);
    font-size: 0.84rem;
}

.gt-line-chart-labels {
    justify-content: space-between;
    color: var(--gt-slate);
    font-size: 0.8rem;
}

.gt-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.gt-donut-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 260px;
}

.gt-donut-chart {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.gt-donut-chart::after {
    content: "";
    position: absolute;
    inset: 34px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.7);
}

.gt-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gt-donut-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--gt-navy);
    font-size: 0.9rem;
}

.gt-donut-legend-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gt-alerts-card {
    min-height: 360px;
}

.gt-alert-item {
    display: flex;
    gap: 12px;
    padding: 14px;
}

.gt-alert-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1rem;
}

.gt-alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gt-alert-content strong {
    color: var(--gt-navy);
    font-size: 0.9rem;
}

.gt-alert-content span {
    color: var(--gt-slate);
    font-size: 0.8rem;
}

.gt-alert-danger .gt-alert-icon {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.gt-alert-warning .gt-alert-icon {
    background: rgba(245, 158, 11, 0.14);
    color: #d97706;
}

.gt-alert-info .gt-alert-icon {
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
}

.gt-alert-success .gt-alert-icon {
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
}

.gt-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 29, 58, 0.42);
    z-index: 90;
}

.gt-modal-shell {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 91;
}

.gt-modal-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(8, 29, 58, 0.24);
    padding: 22px;
}

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

.gt-modal-header h3 {
    margin: 0;
    color: var(--gt-navy);
    font-size: 1.2rem;
    font-weight: 700;
}

.gt-modal-header p {
    margin: 6px 0 0;
    color: var(--gt-slate);
    font-size: 0.88rem;
}

.gt-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--gt-navy);
}

.gt-modal-form {
    display: grid;
    gap: 14px;
}

.gt-modal-field {
    display: grid;
    gap: 6px;
}

.gt-modal-field label {
    color: var(--gt-navy);
    font-size: 0.86rem;
    font-weight: 600;
}

.gt-modal-field input {
    width: 100%;
    height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 14px;
    box-sizing: border-box;
    outline: none;
}

.gt-modal-field input:focus {
    border-color: var(--gt-blue);
    box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.12);
}

.gt-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.gt-modal-primary,
.gt-modal-secondary {
    min-width: 120px;
    height: 44px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent;
}

.gt-modal-primary {
    background: var(--gt-blue);
    color: #fff;
}

.gt-modal-secondary {
    background: #eef2f7;
    color: var(--gt-navy);
}

.gt-modal-alert {
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.gt-modal-alert.is-error {
    background: #fee2e2;
    color: #991b1b;
}

.gt-modal-alert.is-success {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 1399.98px) {
    .gt-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gt-dashboard-analytics {
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr);
    }

    .gt-alerts-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1199.98px) {
    .gt-company-card,
    .gt-dashboard-welcome,
    .gt-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gt-company-meta-grid,
    .gt-dashboard-operations,
    .gt-dashboard-analytics,
    .gt-donut-layout {
        grid-template-columns: 1fr;
    }

    .gt-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .gt-shell-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
    }

    .gt-shell-menu-open .gt-shell-sidebar {
        transform: translateX(0);
    }

    .gt-shell-menu-open .gt-shell-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(8, 29, 58, 0.38);
        z-index: 30;
    }

    .gt-topbar {
        padding: 0 16px;
    }

    .gt-topbar-menu-button {
        display: inline-flex;
    }
}

@media (max-width: 767.98px) {
    .gt-toast {
        top: 86px;
        left: 16px;
        right: 16px;
        min-width: 0;
        max-width: none;
    }

    .gt-shell-content {
        padding: 16px;
    }

    .gt-topbar {
        height: auto;
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .gt-topbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .gt-user-pill {
        flex: 1;
        justify-content: space-between;
        min-width: 0;
    }

    .gt-user-dropdown {
        left: 0;
        right: auto;
        width: 100%;
    }

    .gt-kpi-grid,
    .gt-dashboard-operations,
    .gt-dashboard-analytics {
        grid-template-columns: 1fr;
    }

    .gt-order-row,
    .gt-widget-list-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .gt-order-financial {
        align-items: flex-start;
    }

    .gt-order-value {
        text-align: left;
    }

    .gt-donut-layout {
        grid-template-columns: 1fr;
    }
}

.gt-alert-count {
    color: #0f172a;
    font-size: 0.8rem;
    font-weight: 600;
}

.gt-skeleton-card {
    min-height: 180px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.85) 25%, rgba(241, 245, 249, 1) 50%, rgba(226, 232, 240, 0.85) 75%);
    background-size: 200% 100%;
    animation: gt-dashboard-skeleton 1.2s ease-in-out infinite;
}

.gt-dashboard-layout-editor {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gt-dashboard-layout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 14px;
    background: #f8fafc;
}

@keyframes gt-dashboard-skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}
