@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #9b00ff;
    --secondary: #00c8ff;
    --accent: #00c8ff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #fff;
    --gray-50: #f8f9fc;
    --gray-100: #f8f9fc;
    --gray-200: #e8e7ed;
    --gray-300: #d4d2db;
    --gray-400: #b8b6c1;
    --gray-500: #fff;
    --gray-600: #fff;
    --gray-700: #fff;
    --gray-900: #fff;
    --white: #fff;
}
:root {
  --primary: #9b00ff;
  --secondary: #00c8ff;
  --gray-100: #f8f9fc;
  --gray-300: #d4d2db;
  --gray-600: #fff;
  --gray-900: #fff;
  --white: #fff;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
	background: #f8f9fc;
}
html {
		background: #f8f9fc;
}
.portal-container {
    display: flex;
    min-height: 100vh;
	background: #070011;
}
.sidebar {
    width: 280px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 200;
    overflow-y: auto;
    transition: transform 0.4s ease;
		background: radial-gradient(circle at 70% 20%, #140030 0%, #050012 70%, #000008 100%);
		color: #ddd;
		box-shadow: 20px 0 30px rgba(155, 0, 255, 0.05);
}
.sidebar.hide {
    transform: translateX(-100%);
}
.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 auto;
}
.sidebar-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}
.sidebar-logo img {
  max-width: 100px;
  border-radius: 50px;
  background: linear-gradient(135deg, #6b11ff, #9b00ff);
  padding: 10px;
  box-shadow: 0 0 20px rgba(155, 0, 255, 0.4);
  transition: all 0.3s ease;
}
.sidebar-logo img:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.6);
}
.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
}
.logo-text {
    color: #fff;
    font-weight: 900;
    font-size: 1.5rem;
	margin: 0 auto;
}
.sidebar-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
}
.nav-section {
    padding: 1rem;
}
.nav-section-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}
#sidebar .nav-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}
#sidebar .nav-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateX(6px);
}
#sidebar .nav-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
.nav-icon {
    margin-right: 0.8rem;
}
.main-content {
    flex: 1;
    margin-left: 280px;
    transition: margin 0.4s ease;
    min-height: 100vh;
background-color: #080019;
  background-image: radial-gradient( ellipse 65% 50% at 50% 50%, rgba(120, 40, 200, 0.28) 0%, rgba(80, 20, 150, 0.22) 25%, rgba(50, 10, 90, 0.14) 45%, rgba(25, 8, 55, 0.08) 60%, rgba(10, 2, 25, 0) 75% ), radial-gradient( ellipse 70% 90% at 0% 50%, rgba(5, 0, 16, 0) 30%, rgba(10, 2, 25, 0.75) 70%, #03000b 95% ), radial-gradient( ellipse 70% 90% at 100% 50%, rgba(5, 0, 16, 0) 30%, rgba(10, 2, 25, 0.75) 70%, #03000b 95% ), linear-gradient( to bottom, rgba(8, 0, 25, 0.9) 0%, rgba(8, 0, 25, 0.0) 35%, rgba(8, 0, 25, 0.0) 65%, rgba(5, 0, 16, 0.9) 100% );
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.topbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 150;
  background: #100028;
  color: #fff;
  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    display: none;
}
.search-container {
    flex: 1;
    margin: 0 1.5rem;
    max-width: 500px;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #070011;
    border-radius: 20px;
    padding: 0.6rem 1rem;
	  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.search-bar i {
    color: var(--gray-500);
    margin-right: 0.6rem;
}
.search-bar input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
	color: #fff;
}
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.notification-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 14px;
    background: var(--white);
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notification-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
.notification-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid var(--white);
}
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
		  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 700;
}
.user-name {
    font-weight: 700;
    font-size: 0.95rem;
}
.user-plan {
    font-size: 0.8rem;
    color: var(--gray-600);
}
.dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    display: none;
    min-width: 160px;
		  background: rgba(20, 10, 40, 1);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}
.dropdown li {
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: 500;
    transition: 0.3s;
}
.dashboard-content {
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}
.welcome-text {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}
.welcome-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.stat-label {
    color: var(--gray-600);
    font-weight: 600;
}
.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.success {
    background: linear-gradient(135deg, var(--success), #0d9663);
}
.secondary {
    background: linear-gradient(135deg, var(--secondary), #9333ea);
}
.warning {
    background: linear-gradient(135deg, var(--warning), #ef4444);
}
.stat-value {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.stat-change {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.negative {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.chart-card,
.quick-actions-card,
.sites-section {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.chart-container {
    height: 250px;
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 12px 12px 0 0;
    transition: 0.3s;
}
.chart-bar:hover {
    transform: translateY(-8px);
}
.action-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.action-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 18px;
    transition: 0.3s;
}
.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1rem;
}
.action-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-900);
}
.sites-section table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
}
.sites-section td,
th {
    padding: 1rem;
    text-align: left;
}
.site-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}
.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.action-btn {
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
}
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.show {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .menu-btn {
        display: block;
    }
    .sidebar-toggle {
        display: block;
    }
    .search-container {
        display: none;
    }
    .topbar {
        padding: 0 1rem;
    }
    .dashboard-content {
        padding: 1.2rem;
    }
}
@media (max-width: 768px) {
    .welcome-text {
        font-size: 1.6rem;
    }
    .stat-value {
        font-size: 1.6rem;
    }
    .stat-card {
        padding: 1.2rem;
    }
    .chart-container {
        height: 200px;
    }
    .sites-section table,
    .sites-section thead {
        display: block;
    }
    .sites-section tr {
        display: block;
        background: var(--white);
        margin-bottom: 1rem;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    .sites-section td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 0.8rem 1rem;
    }
    .sites-section th {
        display: none;
    }
    .site-info {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .topbar-actions {
        gap: 0.5rem;
    }
    .notification-btn {
        width: 40px;
        height: 40px;
    }
    .user-menu {
        padding: 0.3rem 0.6rem;
    }
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .user-name {
        font-size: 0.8rem;
    }
    .stats-grid {
        gap: 1rem;
    }
    .stat-card {
        padding: 1rem;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .sites-section {
        padding: 1.5rem;
    }
    .sites-section table,
    .sites-section thead,
    .sites-section tbody,
    .sites-section tr,
    .sites-section td {
        display: block;
        width: 100%;
    }
    .sites-section thead {
        display: none;
    }
    .sites-section tr {
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
        margin-bottom: 1.2rem;
        overflow: hidden;
        padding: 1.2rem;
    }
    .sites-section td {
        border: none;
        padding: 0.6rem 0;
    }
    .site-info {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .site-icon {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
        border-radius: 14px;
    }
    .site-name {
        font-size: 1.05rem;
        font-weight: 700;
    }
    .site-url {
        font-size: 0.9rem;
        color: var(--gray-600);
    }
    .status-badge {
        background: rgba(16, 185, 129, 0.1);
        color: var(--success);
        display: inline-block;
        margin: 0.5rem 0;
    }
    .sites-section td:nth-child(3),
    .sites-section td:nth-child(4) {
        font-size: 1rem;
        font-weight: 600;
        color: var(--gray-900);
    }
    .action-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        text-align: center;
        font-size: 0.95rem;
        font-weight: 600;
        margin-top: 0.8rem;
        background: var(--gray-50);
    }
    .action-btn.primary {
        width: auto;
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}
.time-btn {
    background: none;
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: 0.3s;
}
.time-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.chart-container {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 0.8rem;
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--secondary), var(--primary));
    border-radius: 10px 10px 0 0;
    height: 60%;
    transition: 0.3s;
}
.chart-bar:hover {
    transform: translateY(-4px);
}
.nav-item a {
color: #fff;
}
.nav-item a:hover {
color: #fff;
}
.tiles .tile-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
    background: #100028;
  color: #fff;
  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.tiles .tile-card:hover {
  transform: translateY(-4px);
}
.tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tile-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b6979;
}
.tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.gradient-orange {
  background: linear-gradient(135deg, #9b00ff, #00c8ff);
}
.gradient-green {
  background: #10b981;
}
.gradient-purple {
  background: #8b5cf6;
}
.tile-stat {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.6rem;
}
.tile-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
}
.tile-badge.positive {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.tile-badge.negative {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}
@media (max-width: 768px) {
  .tile-card {
    padding: 1.2rem 1rem;
    border-radius: 18px;
  }
  .tile-stat {
    font-size: 1.5rem;
  }
  .tile-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}
.arena-panels {
  margin-top: 2rem;
}
.arena-panels .main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.arena-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  overflow: hidden;
  transition: 0.3s ease;
}
.arena-card:hover {
  transform: translateY(-4px);
}
.arena-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.2rem 1.5rem;
}
.arena-card .card-title {
  font-weight: 800;
  color: #fff;
  font-size: 1.15rem;
}
.arena-card .card-header i {
  color: #00c8ff;
}
.arena-card .card-body {
  padding: 1.8rem 1.5rem;
  color: #4a4858;
  font-size: 0.95rem;
  line-height: 1.7;
}
.arena-card .list-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.arena-card .list-group-item {
  background: #f8f9fc;
  border: none;
  border-radius: 16px;
  padding: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.arena-card .list-group-item:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.15);
}
.arena-card .card-footer {
  background: #f8f9fc;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.2rem 1.5rem;
}
.arena-card {
  animation: fadeUp .5s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
  .arena-panels .main-grid {
    grid-template-columns: 1fr;
  }
}
.arena-dashboard {
  color: var(--gray-900);
  animation: fadeIn 0.5s ease;
}
.tile-card {
  display: block;
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  transition: 0.3s;
  text-decoration: none;
  color: var(--gray-900);
}
.tile-card:hover {
  transform: translateY(-4px);
}
.tile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tile-title {
  font-weight: 700;
  color: var(--gray-600);
}
.tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gradient-orange {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.gradient-green {
  background: linear-gradient(135deg, #10b981, #059669);
}
.gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}
.tile-stat {
  font-size: 1.9rem;
  font-weight: 900;
  margin-top: 0.8rem;
}
.tile-badge {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 0.4rem 0.8rem;
}
.tile-badge.positive {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}
.tile-badge.negative {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}
.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.chart-card,
.quick-actions-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  overflow: hidden;
      background: #100028;
  color: #fff;
    background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.card-header {
  display: flex;
  justify-content: space-between;
}
.card-title {
  font-weight: 800;
  color: var(--gray-900);
}
.time-selector {
  display: flex;
  gap: 0.5rem;
}
.time-btn {
  background: none;
  border: none;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
}
.time-btn.active {
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--primary);
}
.chart-container {
  display: flex;
  align-items: flex-end;
  height: 240px;
  padding: 1.5rem;
  gap: 0.8rem;
}
.chart-bar {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  transition: 0.3s;
}
.chart-bar:hover {
  transform: translateY(-6px);
}
.action-list {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
}
.action-item {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: 18px;
  padding: 1rem;
  transition: 0.3s;
  	  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.action-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 1rem;
}
.action-title {
  font-weight: 700;
  color: var(--gray-900);
}
.action-description {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.sites-section {
  margin-top: 2rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  overflow: hidden;
      background: #100028;
  color: #fff;
    background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.sites-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
  padding: 1.5rem;
}
.sites-table th {
  text-align: left;
  color: var(--gray-600);
  font-weight: 600;
  padding: 1rem;
}
.sites-table td {
  padding: 1rem;
    background: rgba(20, 10, 40, 0.35);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
}
.sites-section tbody tr {
	  background: transparent!important;
}
.site-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.status-badge.active {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
}
.action-btn {
  border: none;
  background: var(--gray-100);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
      background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.action-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.action-btn:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 992px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
  .sites-section {
    overflow-x: auto;
  }
}
.performance-summary {
  background: linear-gradient(135deg, #fcfcfc, #e6eefc);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.performance-summary i {
  color: #9b00ff;
  font-size: 1.4rem;
}
.performance-summary strong {
  color: #059669;
}
.notifications-wrapper {
  position: relative;
}
.notif-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 55px;
  width: 320px;
  z-index: 999;
  border-radius: 16px;
  background: rgba(25, 10, 45, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(180, 130, 255, 0.15);
  box-shadow: 0 10px 40px rgba(120, 80, 255, 0.15);
  overflow: hidden;
}
.notif-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border-bottom: 1px solid rgba(180, 130, 255, 0.08);
  color: #e8e3ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.notif-item:hover {
  background: rgba(80, 30, 140, 0.4);
  box-shadow: inset 0 0 15px rgba(150, 90, 255, 0.25);
}
.notif-item i {
  font-size: 1.1rem;
  color: #b47bff;
}
.notif-empty {
  padding: 1.2rem;
  text-align: center;
  color: #bfaeff;
  font-size: 0.9rem;
  background: rgba(20, 5, 45, 0.4);
}
.notif-footer {
  padding: 0.8rem 1rem;
  background: rgba(30, 10, 60, 0.4);
  text-align: right;
  border-top: 1px solid rgba(180, 130, 255, 0.1);
}
.notif-footer a {
  color: #caa8ff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.notif-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(190, 130, 255, 0.5);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 14px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  	  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.cart-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.cart-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.notification-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 14px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  	  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.notification-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}
.notification-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--white);
}
#order-standard_cart .cart-sidebar {
  display: none;
}
#order-standard_cart .cart-body {
   width: 100%!important;
}
.margin-bottom {
	margin-bottom: 50px;
}
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
	background: #100028;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	  background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.breadcrumb-bar:hover {
}
.breadcrumb-bar a {
  text-decoration: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}
.breadcrumb-bar a:hover {
  color: var(--secondary);
}
.breadcrumb-bar i {
  font-size: 1rem;
  opacity: 0.8;
}
.breadcrumb-sep {
  color: #999;
  font-weight: 600;
  font-size: 1rem;
}
.current {
  color: #777;
  font-weight: 600;
}
.breadcrumb{
	background: transparent!important;
	margin-bottom: 0px!important;
}
.dropdown li a {
  color: var(--gray-700);
}
.card {
	  color: #fff;
    background: rgba(20, 10, 40, 0.35)!important;
  border: 1px solid rgba(120, 80, 255, 0.3)!important;
  backdrop-filter: blur(12px)!important;
  transition: 0.4s ease!important;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15)!important;
}
.chart-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  color: #222;
  box-shadow: 0 0 30px rgba(155,0,255,0.03);
  transition: all 0.3s ease;
      background: #100028;
  color: #fff;
    background: rgba(20, 10, 40, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.3);
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.15);
}
.chart-card:hover {
}
.chart-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.chart-card .card-title {
  font-weight: 700;
  font-size: 18px;
  color: #222;
}
.time-selector {
  display: flex;
  gap: 8px;
}
.time-btn {
  background: #f6f6f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 16px;
  border-radius: 10px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}
.time-btn:hover {
  background: linear-gradient(135deg, #ff9966, #a959d3);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(169, 89, 211, 0.4);
  transform: translateY(-2px);
}
.time-btn.active {
  background: linear-gradient(135deg, #ff7e5f, #a959d3);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(169, 89, 211, 0.45);
  transform: translateY(-1px);
}
.time-selector {
  display: flex;
  gap: 8px;
  align-items: center;
}
.chart-container {
  position: relative;
  width: 100%;
  height: 240px;
  margin-top: 10px;
}
canvas#metricsChart {
  background: transparent;
}
.chartjs-render-monitor text {
  fill: #333 !important; 
  font-weight: 600;
}
.chartjs-render-monitor line {
  stroke: rgba(0, 0, 0, 0.08) !important;
}
.chartjs-tooltip {
  background: #fff !important;
  color: #222 !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  font-size: 13px !important;
  padding: 6px 10px !important;
}
.chart-card .chartjs-size-monitor,
.chart-card canvas {
  border-radius: 12px;
}
.chart-card .chartjs-legend {
  color: #222 !important;
}
.chart-card p,
.chart-card span,
.chart-card label {
  color: #333 !important;
}
.chart-container-multi {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  flex-wrap: wrap;
}
.chart-box {
  flex: 1;
  min-width: 280px;
  background: #fff;
  border-radius: 14px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.3s ease;
}
.chart-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}
.chart-box h4 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}
.chart-box canvas {
  width: 100% !important;
  height: 140px !important;
}
#frmDomainHomepage {
	display: none!important;
}