/*Add your custom CSS here

/* PART 1 - Before Lazy Load */




.grid-cell {border-radius: 8px!important; text-align: center!important; background: #f5f5f5 !important; padding: 20px!important; box-shadow: 0 0 15px 0 rgb(0 0 0 / .2)!important; transition: 0.5s all ease; }
.grid-cell:hover {cursor: pointer; background: #fff!important; box-shadow: 0 0px 20px 0 rgb(0 0 0 / .3)!important; }
.grid-cell:hover .casino-title {color: #FF5A62 !important; }
.child-pages-grid .grid-cell .casino-title {font-size: 16px; color: #000000; text-align: center; margin-block: 14px; transition: 0.5s all ease; }

@media (max-width: 767px) {

    .grid-cell {padding: 15px!important; }
    .grid-cell .casino-count {font-size: 12px; margin-bottom: 0; }
    .child-pages-grid .grid-cell .casino-title { font-size: 13px;margin-block: 8px;}

}

.child-pages-grid {
  display: grid !important;
  gap: 20px !important;
  margin-bottom: 20px;
  grid-template-columns: repeat(2, 1fr) !important; /* Default: 2 columns on mobile */
}

@media (min-width: 768px) {
  .child-pages-grid {
    grid-template-columns: repeat(4, 1fr) !important; /* 4 columns on desktop */
  }
}


//////////////////////////lazyload/////////////////////////////

img[data-lazyloaded]{
    opacity: 0;
}

/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
    -webkit-transition: opacity .5s linear 0.2s;
    -moz-transition: opacity .5s linear 0.2s;
    transition: opacity .5s linear 0.2s;
    opacity: 1;
}


/////////////tc font size ////////////


.tc {
  font-size: x-small;
}


/////////////child pages ////////////

/*.child-pages-grid {  display: grid;  margin-bottom: 20px;  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));}*/
/*.child-pages-grid .grid-cell { background: #fff; padding: 20px; box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.2); margin: 15px; border-radius: 10px; width: 90%; }*/
/*.child-pages-grid .grid-cell h2 {  font-size: 16px;  color: #000; text-align: center;}*/

 @media only screen and (max-width: 600px) {

/*.child-pages-grid .grid-cell {
    padding: 15px 10px;
    margin: 0 auto 20px;
}
.child-pages-grid {
    grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
}*/
main#main {
    padding-right: 15px !important;
    padding-left: 16px !important;
}

} 


@media (max-width:600px) {
    .home-top-sidebar .tablepress .column-2 {
        display: block !important;
    }
  .new {
  font-size: 20px;
  }}
  
  /////////////////////////////////wp table ///////////////////
  
  /* Table Container */
.wp-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

/* Table Rows */
.wp-table-row {
    display: table-row;
}

/* Table Header Row */
.wp-table-header {
    font-weight: bold;
    background-color: #f2f2f2;
}

/* Table Cells */
.wp-table-cell {
    display: table-cell;
    padding: 8px;
    border: 1px solid #ddd;
}

/* Responsive Styling */
@media screen and (max-width: 768px) {
    /* Stack rows on top of each other */
    .wp-table-row {
        display: block;
        border: none;
    }

    /* Hide table headers */
    .wp-table-header {
        display: none;
    }

    /* Set cells to full width */
    .wp-table-cell {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: none;
        border-bottom: 1px solid #ddd; /* Add bottom border to separate rows */
        text-align: left; /* Align text to the left */
    }
}


<style>
  .responsive-table {
    width: 100%;
    border-collapse: collapse;
  }
  .responsive-table th, .responsive-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
  }
  .responsive-table th {
    background-color: #f4f4f4;
  }
  @media screen and (max-width: 600px) {
    .responsive-table thead {
      display: none;
    }
    .responsive-table tr {
      display: block;
      margin-bottom: 10px;
      border: 1px solid #ddd;
    }
    .responsive-table td {
      display: block;
      text-align: right;
      position: relative;
      padding-left: 50%;
    }
    .responsive-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      font-weight: bold;
      text-align: left;
    }
  }
</style>

