.Category {
    padding-top: 10px;
  }
  
  .header-line {
    ul {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
  
    img {
      width: 100%;
      height: 50px;
    }
  
    a {
      text-decoration: none;
      color: black;
      font-weight: 600;
      font-size: 14px;
    }
  }
  
  .menu-line {
    background: #0091bc;
  
    margin-top: 10px;
    display: flex;
    justify-content: center;
  
    .men-one {
      display: flex;
      gap: 6px;
      color: #fff;
      cursor: pointer;
      padding: 15px;
      border-right: 1px solid #fff;
    }
  }
  
  .View-box {
    margin-top: 15px;
  
    .hadding-box {
      display: flex;
      justify-content: space-between;
  
      h1 {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 18px;
      }
  
      .view-btn {
        background-color: #0091bc;
        border: none;
        padding: 6px;
        border-radius: 6px;
        color: #fff;
  
        cursor: pointer;
      }
    }
  
    .main-box {
      ul {
        margin-top: 10px;
        border: 1px solid gainsboro;
        padding: 20px;
        border-radius: 8px;
  
        li {
          display: flex;
          border-bottom: 1px solid gainsboro;
          padding: 7px;
          justify-content: space-between;
  
          .name {
            width: 60%;
            a {
              text-decoration: none;
            }
          }
  
          .action {
            width: 40%;
            display: flex;
            gap: 10px;
            cursor: pointer;
            border-left: 1px solid gainsboro;
            padding-left: 10px;
            i {
              color: red;
            }
          }
        }
      }
    }
  }
  