/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



body{
  font-family: 'Courier', monospace; 
  background-image: url('/rightside.jpeg');
  /*background-repeat: repeat-y;*/
  background-attachment:fixed;
  background-size:1472px 1954px; 
  background-position: center;
  cursor: url('/apdtcur.png') 15 7.5, auto;
}

.apgif{ 
  width:300px;
  height:300px;
  position: absolute;
  left:50px;
  margin: 10px auto 10px 10px;
  border: 5px solid black;
}

.kozep{
  width:600px;
  position:absolute;
  top:10px;
  left:50%;
  border: 5px solid black;
  transform: translate(-50%, -50%);
  }

.marquee{
  width:300px;
  height:600px;
  margin: 10px auto 10px 10px;
  border: 10px solid black;
}
.h1{
  color:#1e3a37;
  text-align:center;
  font-weight:bold;
  font-size:60px;
  text-decoration:underline;
}
.honapbox {
  width: 500px;
  height: 300px;
  background-image: url('/red.jpg');
  background-repeat: no-repeat;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 30px auto ;
  border:5px solid /*#aabfb1*/ #938472;
  BORDER-radius:8px;
}
.honapnev{
  color:black;
  text-align:center;
  font-weight: 900;
  margin:27px auto;
  font-size:30px;
  }
.weekdays{
  display:grid;
  grid-template-columns: repeat(7,1fr);
  text-align: center;
  font-weight: bold;
  margin:40px auto 0px;}
  
.napok{
  display:grid;
  grid-template-columns: repeat(7,1fr);
  gap: 10px;
  text-align: center;
  margin:0px 10px 10px 10px;
  padding:1rem 0;
  }
.kurvajunius{  
  display:grid;
  grid-template-columns: repeat(7,1fr);
  gap: 7px;
  margin:0px 10px 7px 10px;
  text-align: center;
  padding:1rem 0;
  }
  .tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #fffffff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1; /* Ensure tooltip is displayed above content */
  bottom: 100%;
  left: 65%;
  margin-left: -65px;
  
  
}
.szerda{
      color: #fff;
      text-shadow: 0 0 5px #972974, 0 0 10px #972974, 0 0 20px #972974, 0 0 40px #972974, 0 0 80px #972974;
      position: relative;
    /*  display: inline-block;*/
      cursor: pointer;  
    }
.szerda:hover .tooltiptext {
  visibility: visible; opacity:1;
}
 

.tooltiptext {
  visibility: hidden;
  text-shadow: none;
  width: 80px;
  height: 12px;
  font-size: 10px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 120%;
/*  left: 50%;*/
  margin-left: -50px;
  opacity:1;
}
.tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

