.container{
    padding: 0;
}

.vh-100{
    height: 90vh !important;
}



/* css strts here */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    display: flex;
    min-height: 100vh;
    background-color: #f1f5f9;
  }
  
  .sidebar {
    width: 250px;
    background-color: #1e293b;
    color: #f8fafc;
    display: flex;
    flex-direction: column;
  }
  
  .sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sidebar-header h2 {
    font-size: 1.2rem;
  }
  
  .sidebar-nav {
    padding: 20px 0;
    flex: 1;
  }
  
  .nav-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .nav-item.active {
    background-color: #334155;
    border-left: 4px solid #2563eb;
  }
  
  .nav-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }
  

  
  .page.active {
    display: block;
  }
  
  .panel {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
  }
  
  .btn-primary {
    background-color: #2563eb;
    color: white;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
  }
  
  table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
  }
  
  table th {
    font-weight: 600;
    background-color: #f8fafc;
  }
  
  .user-detail {
    display: flex;
    align-items: center;
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
  }
  
  .badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
  }
  
  .badge-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
  }
  
  .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #2563eb;
    margin-right: 5px;
  }
  
  .action-btn.delete {
    color: #ef4444;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .stat-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .stat-title {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .stat-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .chart-container {
    height: 300px;
    margin-bottom: 30px;
    background-color: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
  }

  a {
   text-decoration: none;
   color: #f1f5f9;
  }

  .logo-txt{
    margin-left: 10px;
    font-weight: 600;
  }

  /* .mr-5{
    margin-right: 10px !important;
  } */

  .logo-icon{
    display: flex;
    align-items: center;
  }
  .modal-footer{
    justify-content: space-between;
  }