/* =============================== CSS for All Pages excluding Index =============================== */

/* =============================== Most Important  */

.w3-table-all tr td{
    color:  #717275;
}

.w3-table-all tr th{
  background-color: rgb(172, 171, 171);
}


/* ----------------pagination and pagination card */

#card-resize{
  width: 35%;
}
@media  screen and (max-width:768px) {
  #card-resize{
    width: 100%;
  }
  
}

.pagination {
    display: inline-block;
}

.pagination button {
    background-color: #ffffff;
    color: rgb(255, 0, 0);
    padding: 8px 16px;
    margin: 2px;
    border: 1px solid gray;
    border-radius: 5px;
    cursor: pointer;
}

.pagination button.active {
    background-color: #ff0101da;
    color: white;
}

.pagination button:hover:not(.active) {
    background-color: #f54e4e;
}

/* ------------------fedback Form */

.feedback form{
    input, select{
        padding: 12px 20px;
        margin: 8px 0;
        box-sizing: border-box;
      }

      input[type=email],input[type=tel],input[type=date], select{
        width: 49%;
      }
      input[type=text], textarea{
        width: 100%;
      }
      textarea{
        height: 50%;
      }
      input[type=submit],input[type=button]{
        font-size: 1rem;
        background-image: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
      }

}






