html, body {
  background-image: url('../../images/bg2.avif');
			background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
            min-height: 140vh;
       
   }      
   
.card {
    border-radius: 8px;
 background-color: #1f22c4!important;
   color:#ffffff!important;
   height:120px!important;
   opacity:0.8;
    text-align: center;
    padding: 30px 10px 10px 10px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    font-weight:900;
    text-decoration:none;
     text-shadow: none;
       }
.card i { font-size: 30px; margin-bottom: 5px; }

.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    color:#1f22c4;
  
}
.bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    padding-top: 6px;
}
.bottom-nav a i {
    display: block;
    font-size: 20px;
}
  .secondary-section {
      background: var(--card-bg);
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .secondary-header {
      padding: 1rem 1.5rem;
      background: #f1f5f9;
      cursor: pointer;
      user-select: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      text-decoration:none;
      
    }

  

    @media (max-width: 768px) {
      .primary-actions {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      }
    }
   .usage-stats {
            background: #1f22c4;
            padding: 15px;
            opacity:0.8;
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
            width:100%;
            color:#ffffff;
            margin:0 auto;
      text-shadow: none;
            border-radius: 8px;
            grid-column: 1 / -1;
        }
        
        .usage-title {
            font-size: 22px;
            margin-bottom: 15px;
            text-align: center;
			color:#ffffff;
			
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .empty-state {
            text-align: center;
            padding: 40px 20px;
            color: #7f8c8d;
        }
        
        .empty-icon {
            font-size: 60px;
            margin-bottom: 15px;
            color: #bdc3c7;
        }
.bottom-nav a.active { color: #1f22c4; }
.dropbtn {
  background-color: transparent;
  color: black;
 
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
 width: 80px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content a:hover {background-color: #f1f1f1;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}

    :root {
      --primary: #6265f0;
      --primary-dark: #6265f0;
      --bg: #f8fafc;
      --card-bg: white;
      --text: #1e293b;
      --text-light: #6265f0;
      --border: #6265f0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
             background-image: url('images/bg2.avif');
			background-repeat: no-repeat;
  background-attachment: fixed; 
  background-size: 100% 100%;
      color: var(--text);
      min-height: 140vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    .container {
    
      width:100%;
  max-width:1200px;
  margin:auto;
  padding:16px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .search-bar {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
    }

    .search-bar input {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: 0.5rem;
      font-size: 1rem;
    }

    h1 {
      font-size: 1.6rem;
      font-weight: 600;
    }

    .kpi-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2.5rem;
    }

    .kpi-card {
      background: var(--card-bg);
      padding: 1.25rem;
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .primary-actions {
      display: grid;
     
       margin-bottom: 3rem;
       display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
    }

    .action-card {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      padding: 2rem 1.75rem;
      border-radius: 1rem;
      text-align: center;
      transition: all 0.25s ease;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
       display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 140px;
    }

    .action-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

    .action-card i {
      font-size: 2.5rem;
       margin-bottom:8px;
      opacity: 0.9;
      color: white;
    }

   .action-card h3{
  margin-top:6px;
  margin-bottom:4px;
}

.action-card p{
  font-size:0.85rem;
  line-height:1.2;
}
 .action-card a {
      font-size: 0.95rem;
      opacity: 0.85;
      color: white;
      text-decoration:none;background-color:#212cc4;
    }
    .secondary-section {
      background: var(--card-bg);
      border-radius: 0.75rem;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .secondary-header {
      padding: 1rem 1.5rem;
      background: #f1f5f9;
      cursor: pointer;
      user-select: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }

    .secondary-content {
      padding: 1.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
    }
.bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    color:#534de8;
  
}
.bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #534de8;
    font-size: 12px;
    padding-top: 6px;
}
.bottom-nav a i {
    display: block;
    font-size: 20px;
}
  .secret-btn{
  font-size:0.8rem;
  padding:6px 12px;
  margin-top:6px;
}
    .secondary-item {
      padding: 1rem;
      background: #f8fafc;
      border-radius: 0.5rem;
      border: 1px solid var(--border);
      transition: all 0.2s;
      font-weight:700;
    }

    .secondary-item:hover {
      background: #f1f5f9;
      border-color: #cbd5e1;
    }
.secondary-item: a {
      background: #f1f5f9;
      border-color: #cbd5e1;
      text-decoration:none!important;
    }
    .logo {
  max-width: 220px;
}
.header-top{
  text-align:center;
  margin-bottom:15px;
}
@media (max-width:768px){
  .logo{
    max-width:140px;
  }
}
        .primary-actions {
       grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      }
    .welcome-box{
    text-align:center;
    margin-bottom:10px;
  }

  .welcome-box h2{
    font-size:1rem;
    margin-bottom:4px;
  }

  .welcome-box p{
    font-size:0.8rem;
  }

    .container {
      width: 100%;
    font-size: 1.5rem;
    
    }

     .kpi-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.25rem;
    
        
    margin-bottom:20px;
    }  

