@tailwind base;
@tailwind components;
@tailwind utilities;


body {
    background-color: #050505;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    display: flex;
    min-height: 100vh;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Sidebar */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 18%;
    background-color: #0e0e0e;
    margin-right: 5%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .sidebar nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: #b0b0b0;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  
  .sidebar nav a i {
    margin-right: 10px;
  }
  
  .sidebar nav a.active,
  .sidebar nav a:hover {
    background-color: #272727;
    color: #fff;
  }
  
  .sidebar nav a.logout {
    color: #e74c3c;
  }
  
  /* Main content */
  .main-content {
    flex: 99;
    margin-left: 20%;
    padding: 20px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .search {
    width: 30%;
    margin-left: 10%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #222;
    color: #fff;
  }
  
  .user-info {
    display: flex;
    align-items: center;
  }
  
  .user-info img {
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .user-info .theme-toggle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 10px;
    border: none;
    cursor: pointer;
  }
  
  .theme-toggle.yellow {
    background-color: #f39c12;
  }
  
  .theme-toggle.gray {
    background-color: #090c3a;
  }
  
  /* Courses section */
  .courses {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .course {
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .course:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .gradient-yellow {
    background: linear-gradient(45deg, #f39c12, #f39c12);
  }
  
  .gradient-green {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
  }
  
  .progress-bar {
    width: 100%;
    height: 8px;
    background-color: #333;
    border-radius: 8px;
    margin-top: 10px;
  }
  
  .progress {
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
  }
  
  .continue {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* Progress section */
  .progress h2 {
    margin-bottom: 20px;
    color: #000;
    text-align: center;
    padding-top: 15px;
  }
  
  .progress-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding-left: 5%;
  }
  
  .progress-item {
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .progress-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .gradient-blue {
    background: linear-gradient(45deg, #3498db, #2980b9);
  }
  
  .gradient-green {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
  }
  
  .gradient-red {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
  }
  
  .mentor {
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  .mentor img {
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .improve-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .improve {
    color: #ffffff;
  }
  
  /* Stats section */
  .stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .stat {
    flex: 1;
    padding: 20px;
    border-radius: 16px;
    background-color: #1e1e1e;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .stat .up {
    color: #2ecc71;
  }
  
  .stat .down {
    color: #e74c3c;
  }
  
  /* Upcoming section */
  .upcoming {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .upcoming-work {
    flex: 2;
    padding: 20px;
    border-radius: 16px;
    background-color: #1e1e1e;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .chat-bot {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: #3498db;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .chat-btn {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  

