.pi-link {
    display: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 12px;
  margin: 0px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  max-width: 1000px;
  margin: auto;
}

.movie-block {
  width: 48%;
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  margin: 7px;
}

.movie-block h2 {
  font-size: 16px;
  text-align: right;
  margin-right: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.showtimes {
  font-size: 12px;
  margin-bottom: 12px;
}

.showtime-box {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 6px;
  margin: 2px;
  font-size: 11px;
  background-color: #f9f9f9;
}

.disclaimer {
  text-align: center;
  font-size: 10px;
  margin-top: 30px;
  font-style: italic;
  color: #888;
}


.info-block-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-top: 0px;
  flex-wrap: nowrap;
}

.info-block-column {
  flex: 1 auto;
  text-align: left;
  min-width: 0;
}

.info-block-column h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}

.info-block-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block-column ul li {
  margin-bottom: 6px;
}

.info-block-column a {
  color: #ccc;
  text-decoration: none;
}

.info-block-column a:hover {
  text-decoration: underline;
}

.info-block-column:last-child:after {
content: '*Showtimes on this page may change\A please check website for accurate times\Ariverviewcinemas8.com';
white-space: pre-wrap;
}

.button-container {
  display: flex;
  justify-content: center;
  width : 100%;
  gap: 50px;
  margin-top: 10px;
}

.button-container button {
  background-color: #007bff; 
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 55px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
}

.button-container button:hover {
  background-color: #0056b3;
}
footer a {
    color: black !important;
}


@media print {
  @page {
    margin: 0;
  }

    body {
    margin: 0;
    padding: 0;
  }
  
    body::before {
   -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background-image: url('https://riverviewcinemas8.com/images/bg.gif');
    background-repeat: repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
    transform: rotate(15deg);
    transform-origin: 50% 30%;
    background-size: 20% auto;
  }

  .container {
    margin: 5px;
    padding: 5px;
  }

  .movie-block {
    page-break-inside: avoid;
  }
  .noprint {
      display: none;
  }
}




