 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      display: flex;
      background-color: rgb(255, 246, 246);
    }

    .sidebar {
      width: 230px;
       background-color: rgb(255, 226, 226);
      padding: 20px;
      border-right: 1px solid #fadfdf;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .sidebar h2 {
      margin-bottom: 20px;
    }

    .nav-links,
    .bottom-links {
      list-style: none;
    }

.dash{
  margin-top: 50px;
}

    .nav-links li,
    .bottom-links li {
      padding: 12px 15px;
      margin: 5px 0;
      border-radius: 8px;
      cursor: pointer;
    }

    .nav-links li:hover,
    .bottom-links li:hover {
      background-color: #ffecec;
    }

    .main-content {
      flex: 1;
      padding: 30px;
    }

    .user-info {
      margin-bottom: 10px;
      font-size: 16px;
      color: #333;
    }

    .top-section {
      display: flex;
      gap: 10px;
      
    }

    .box {
      flex: 1;
       background-color: rgb(255, 226, 226);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .box h3 {
      margin-bottom: 10px;
      font-size: 18px;
    }

    .box p {
      margin: 5px 0;
      color: #333;
    }

    .see-more {
      display: block;
      margin-top: 10px;
      color: green;
      font-size: 14px;
      text-decoration: underline;
      cursor: pointer;
    }

    .orders {
      background-color: rgb(255, 226, 226);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }

    th, td {
      padding: 10px;
      border-bottom: 1px solid #f5c9c9;
      text-align: left;
      font-size: 14px;
    }

    th {
      background-color: #ffecec;
    }

    .status {
      font-weight: bold;
      border-radius: 5px;
      padding: 3px 6px;
      font-size: 13px;
    }

    .pending { background-color: #fff3cd; color: #856404; }
    .delivered { background-color: #d4edda; color: #155724; }
    .canceled { background-color: #f8d7da; color: #721c24; }
    .onway { background-color: #cce5ff; color: #004085; }
