* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #1f1f2f;
    color: white;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .sidebar {
    width: 300px;
    background: #2a2a3d;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  }
  
  .sidebar h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .meeting {
    margin-bottom: 20px;
    padding: 10px;
    background: #333;
    border-radius: 10px;
  }
  
  .meeting span {
    font-size: 0.8rem;
    color: #bbb;
  }
  
  .meeting p {
    font-weight: bold;
    margin: 5px 0;
  }
  
  .dashboard {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
  }
  
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .top-bar input {
    width: 250px;
    padding: 8px;
    border-radius: 10px;
    border: none;
    background: #333;
    color: white;
  }
  
  .user {
    background: #444;
    padding: 10px 15px;
    border-radius: 20px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  
  .card {
    background: #2a2a3d;
    padding: 300px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
  }
  
  .map-placeholder {
    background: #3a3a5a;
    height: 100px;
    border-radius: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
  }
  
  .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#4caf50 50%, #333 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
  }
  
  .circle span {
    font-size: 1.2rem;
  }
  
 
  .working-day ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    margin-top: 10px;
  }
  
  .labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #bbb;
  }
  
  canvas {
    background-color: #1c1c2c;
    border-radius: 20px;
    margin-top: 20px;
    
  }

  .bar {
    width: 12%;
    background: #00e6e6;
    border-radius: 4px 4px 0 0;
    height: 0;
    animation: growBar 1s ease-out forwards;
  }
  
  .bar:nth-child(1) { animation-delay: 0s; }
  .bar:nth-child(2) { animation-delay: 0.1s; }
  .bar:nth-child(3) { animation-delay: 0.2s; }
  .bar:nth-child(4) { animation-delay: 0.3s; }
  .bar:nth-child(5) { animation-delay: 0.4s; }
  .bar:nth-child(6) { animation-delay: 0.5s; }
  .bar:nth-child(7) { animation-delay: 0.6s; }
  
  @keyframes growBar {
    from {
      height: 0;
    }
    to {
      height: var(--bar-height);
    }
  }
  
  
  .sidebar {
    background-color: #212d52;
    padding: 1rem;
    border-radius: 12px;
  }
  
  .sidebar ul {
    list-style: none;
    margin-top: 1rem;
  }
  
  .sidebar li {
    margin-bottom: 0.5rem;
    cursor: pointer;
  }
  
  .main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .card {
    background-color: #263661;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .time-progress {
    margin-top: 20px;
  }
  
  #timeChart {
    opacity: 0;
    animation: fadeIn 0.55s ease forwards;
    animation-delay: 0.5s;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  .time-progress canvas {
    background-color: #1c1c2c;
    border-radius: 12px;
    width: 200%;
    max-width: 1000px;
    height: 200px;
    display: block;
    margin: 10px 0;
  }
    
  
  .chart {
    height: 100px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 200px;
    gap: 0.5rem;
  }
  
  .bar {
    width: 12%;
    background: #00e6e6;
    border-radius: 4px 4px 0 0;
  }
  
  .transactions {
    grid-column: span 2;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    color: #ddd;
  }
  
  th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #2f3d66;
  }
  
  th {
    color: #fff;
  }

  .bottom-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .bar-graph,
  .transactions {
    flex: 1;
    min-width: 300px;
  }
  



  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
    }
  
    .container {
      flex-direction: column;
    }
  
    .sidebar {
      width: 100%;
    }
  }

  
  @keyframes rotateProgress {
    0% { background: conic-gradient(#4caf50 0%, #333 0%); }
    100% { background: conic-gradient(#4caf50 50%, #333 50%); }
  }
  
  .circle {
    animation: rotateProgress 2s ease-out;
  }
  
  /* Cursor Session Starts  */
.cursor-dot{
  width: 15px;
  height:15px;
  background-color: #68b9ee;
}
.cursor-outline{
  width:30px;
  height:30px;
  border:2px solid #68b9ee;
}
.cursor-dot,.cursor-outline{
  position:fixed;
  top:0;
  left:0;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  z-index:1;
  pointer-events: none;
}
/* Cursor Session Ends */