*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background: #f4f6f8;
}
.padd{
    padding-left:100px;
    padding-right:100px;
    padding-top:25px;
    margin-top: 60px;
    padding-bottom:25px;
}
.navbar{
    width: 100%;
    height: 70px;
    background: #ffffff;
    display: flex;
    position: fixed;
    z-index: 1000;
    top: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 1px 4px #A480F2;
}
.logo a{
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #A480F2;
}
.right{
    display: flex;
    align-items: center;
    gap: 20px;
}
.search{
    position: relative;
    width: 250px;
}
.search input{
    width: 100%;
    padding: 8px 15px 8px 38px;
    border-radius: 20px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}
.search input:focus{
    border-color: #A480F2;
}
.search i{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}

.secsearch{
    position: relative;
    width: 100%;
    margin-top: 10px;
}
.secsearch input{
    width: 100%;
    padding: 8px 15px 8px 38px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}
.secsearch input:focus{
    border-color: #A480F2;
}
.secsearch i{
    position: absolute;
    left: 12px;
    transform: translateY(-50%);
    top: 50%;
    color: gray;
}

.sectit{
    margin-top: 25px;
    margin-bottom: 15px;
}

.icon{
    font-size: 18px;
    color: #555;
    background-color: rgb(236, 236, 236);
    padding: 9px 9px;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.3s;
}
.icon:hover{
    color: #A480F2;
}
.profile img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}
table {
  width: 100%;
  margin-top: 25px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #A480F2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px #A480F2;
}
th, td {
  padding: 17px;
  text-align: left;
  border-bottom: 1px solid #A480F2;
}
th {
  color: #A480F2;
}
tr:last-child td {
  border-bottom: none;
}
tbody tr:hover{
    background-color: #f3eaff;
}
.dff{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.images{
    transition: 0.3s ease all;
}
.images:hover{
    transform: rotate(-2deg);
}
.namess{
    color: #9b75ee;
}

@media(max-width:600px){
    .padd{
    padding-left:15px;
    padding-right:15px;
    padding-top:15px;
    padding-bottom:15px;
    margin-top:80px;
  }
  .navbar{
    height:60px;
    padding: 0 15px;
  }
  .logo a{
    font-size:16px;
  }
  .right{
    gap:10px;
  }
  .search{
    width:140px;
  }
  .search input{
    padding:6px 10px 6px 32px;
    font-size:12px;
  }
  .secsearch input{
    padding:6px 10px 6px 32px;
    font-size:12px;
  }
  .icon{
    font-size:14px;
    padding:6px 6px;
  }
  .profile img{
    width:28px;
    height:28px;
  }
  table{
    font-size:12px;
  }
  th, td{
    padding:10px;
  }
  .dff{
    justify-content: center;
  }
}