body {
  background: #ccc;
}
.App {
  width: 70%;
  margin: 0 auto;
  margin-top: 22px;
}
.slick-slide > div {
  margin: 0 10px;
}
.slick-list {
  margin: 0 -10px;
}
.card {
  border: 1px solid #fff;
  background: #3498DB;
  border-radius: 8px;
  overflow: hidden;
  height: 430px !important;
  color: #fff;
  cursor: pointer;
}
.card-top h1 {
  font-size: 0.9rem;
  margin: 5px 20px 15px;  
}
.card-top > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: white;
}
.card-bottom {
  margin: 10px 20px;
}
.category {
  position: relative;
}
.category::before {
  content: '';
  background: rgb(255, 61, 61);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  height: 2px;
}

/***********************CSS FOR WINNERS TABLE*************************************/
.dashboard-sec{
  /* font-family: "Poppins", sans-serif; */
  font-family: Helvetica, Helvetica Neue, Arial, Serif !important;
}
.heading img {
  margin-top: 10px;
}

h1 {
  color: #fff;
  font-weight: bold;
  background: transparent;
  padding: 7px;
  margin-bottom: 10px;
}

.outer-wrapper {
  margin-bottom: 50px !important;
  margin-top: 10px;
  margin-left: 18%;
  margin-right: 18%;
  border: 1px solid black;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
  max-width: fit-content;
  max-height: fit-content;
  background: #fff;
}

.table-wrapper {
  overflow-y: scroll;
  overflow-x: scroll;
  height: 50vh;
  margin-top: 22px;
  margin: 15px;
  padding-bottom: 20px;
}

table {
  border-collapse: separate;
  border-spacing: 0px;
  height: 100px;
  width: 100%;
  border-radius: 5px;
}

table th {
  position: sticky;
  top: 0px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  /* outline: 0.7px solid black; */
  border: 1.5px solid black;
}

table th,
table td {
  padding: 15px;
  padding-bottom: 10px;
  min-width: 150px;
}

.big-column {
  min-width: 400px;
}

table td {
  text-align: left;
  font-size: 15px;
  border: 1px solid rgb(177, 177, 177);
  padding-left: 5px;
  text-align: justify;
  word-wrap: break-word !important;
  color: black;
}

/***********************CSS FOR MOBILE VIEW TABLE*************************************/
.heavyTable {
  width: 100%;
  min-width: 300px;
  height: 320px;
  border-collapse: collapse;
  border: 1px solid #38678f;
  margin: 5px auto;
  background: white;
}
.table-head th {
  background: #ccce2c !important;
  height: 54px;  
  font-weight: lighter;
  color: white;
  font-weight: 500;
  /* border: 1px solid gray !important;
  box-shadow: inset 0px 1px 2px #568ebd; */
  transition: all 0.2s;
  padding: 3px;
  text-align: center;
}
.tbody tr {
  border-bottom: 1px solid black;
  text-align: center;
}
.tbody tr:last-child {
  border-bottom: 0px;
}
.tbody td {
  border-right: 1px solid black;
  padding: 10px;
  transition: all 0.2s;
  text-align: left;
}

.heavyTable {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 5s infinite;
}
.main {
  max-width: 1200px;
  padding: 10px;
  margin: auto;
  overflow-x: scroll;
}
.tbody tr td {
  border: 1px solid gray;
}
  .title-winners{
  text-align: center;
  padding: 20px;
  color: #ccce2c;
  font-weight: 600;
  font-size: 30px;
  margin-top: 20px;
  }
  @media screen and (max-width: 980px) {
    .title-winners {
    font-size: 14px;
    padding: 10px;
    margin-top: 7px;
    }
    .table-head th {
      height: 38px;
      font-weight: 400;
    }
    .tbody td {
      padding: 1.5px;
  }
  }
.clgname:hover {
  font-size: 50px;
}


/*********************ZOOM IMAGE**************************/
.card img{
  transition: transform 0.3s ease-in-out;
  cursor: zoom-in;
}

.card img:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}