body.cronos-body {
    margin: 0;
    background: #f4f7fb;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #1f2937;
}

.cronos-wrapper {
    display: flex;
    min-height: 100vh;
}

.cronos-sidebar {
    width: 250px;
    background: linear-gradient(180deg, #0d1b3d 0%, #09142d 100%);
    color: #fff;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 8px 0 30px rgba(0, 0, 0, .08);
}

.cronos-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 8px 18px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cronos-logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1f6fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 18px rgba(31, 111, 255, .35);
}

.cronos-brand-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
}

.cronos-brand-sub {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.cronos-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cronos-menu-item {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    transition: all .2s ease;
    font-weight: 500;
}

.cronos-menu-item i {
    font-size: 18px;
}

.cronos-menu-item:hover,
.cronos-menu-item.active {
    background: #1f6fff;
    color: #fff;
    transform: translateX(2px);
}

.cronos-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cronos-topbar {
    background: #fff;
    padding: 18px 26px;
    border-bottom: 1px solid #e9eef5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cronos-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cronos-company-pill {
    background: #f4f7fb;
    color: #334155;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e7edf5;
}

.cronos-icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: #f4f7fb;
    border-radius: 12px;
    font-size: 18px;
    color: #334155;
}

.cronos-user {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    padding: 6px 10px;
}

.cronos-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cronos-content {
    padding: 24px;
}

.cronos-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    padding: 20px;
    height: 100%;
}

.cronos-stat-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    padding: 20px;
    height: 100%;
}

.cronos-stat-title {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cronos-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.cronos-stat-sub {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

.cronos-stat-positive {
    color: #16a34a;
    font-weight: 700;
}

.cronos-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.cronos-alert-item {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.cronos-alert-item:last-child {
    border-bottom: none;
}

.cronos-alert-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.alert-soft-red {
    background: #fee2e2;
    color: #dc2626;
}

.alert-soft-blue {
    background: #dbeafe;
    color: #2563eb;
}

.alert-soft-yellow {
    background: #fef3c7;
    color: #d97706;
}

.cronos-mini-stat {
    text-align: center;
    padding: 18px 10px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e9eef5;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.cronos-mini-stat .value {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
}

.cronos-mini-stat .label {
    color: #64748b;
    font-size: 13px;
    margin-top: 6px;
}

@media (max-width: 992px) {
    .cronos-sidebar {
        display: none;
    }

    .cronos-topbar {
        padding: 16px;
    }

    .cronos-content {
        padding: 16px;
    }
}

.cronos-base-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 14px;
}

.cronos-menu-group {
    margin-bottom: 18px;
}

.cronos-menu-title {
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    padding: 0 12px 8px;
}

.cronos-powered {
    margin-top: auto;
    padding: 14px 10px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.cronos-powered-logo {
    max-width: 95px;
    max-height: 34px;
    object-fit: contain;

}

.cronos-powered-text {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: .05em;
}

.cronos-company-pill i {
    margin-right: 6px;
}

.cronos-user {
    cursor: pointer;
}

.cronos-top-menu-btn {
    min-height: 42px;
    border: 1px solid #e7edf5;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 12px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all .18s ease;
}

.cronos-top-menu-btn:hover {
    background: #eef5ff;
    border-color: #cfe0ff;
    color: #1f6fff;
}

.cronos-dropdown-wide {
    min-width: 260px;
    border: 1px solid #e7edf5;
    border-radius: 14px;
    padding: 8px;
}

.cronos-dropdown-wide .dropdown-item {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
}

.cronos-dropdown-wide .dropdown-item:hover {
    background: #eef5ff;
    color: #1f6fff;
}

.cronos-dropdown-wide .dropdown-header {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 8px 12px 4px;
    text-transform: uppercase;
}

.cronos-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cronos-company-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1200px) {
    .cronos-top-menu-btn span {
        display: none;
    }

    .cronos-top-menu-btn {
        width: 42px;
        justify-content: center;
        padding: 0;
    }

    .cronos-top-menu-btn .bi-chevron-down {
        display: none;
    }
}

.cronos-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 6px 18px 6px;
}

.cronos-brand-logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cronos-brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    padding: 4px;
    box-shadow: 0 8px 20px rgba(31, 111, 255, 0.20);
}

.cronos-brand-text {
    min-width: 0;
}

.cronos-brand-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cronos-brand-sub {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.35;
    display: block;
}
