body,
p,
td,
a {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
}

body {
  color: green;
  font-size: 10pt;
  text-align: center;
  background-color: black;
  /* margin: 2px; */
  padding: 0;
}

table,
td {
  background-color: #000000;
}

p {
  font-size: 10pt;
  text-align: center;
  /*margin: 0; 2em;*/
  /* background-color: black; */
}

h1 {
  display: none;
  color: white;
  font-family: tahoma, arial, Helvetica, sans-serif;
  font-size: 15pt;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  /* margin-bottom: 1em; */
}

a {
  color: red;
  font-size: 14px;
  text-decoration: none;
}

/* a:hover { */ body > p > a:nth-child(1):hover, body > p > a:nth-child(2):hover {
  /* text-decoration: underline wavy; */
  /* font-size: 15px; */
  font-weight: bolder;
  color: green;
  /* border: 2px green; */

    border: 1px solid black;
  outline: #4CAF50 solid 2px;
  margin: auto;  
  padding: 5px;
}

#gallery-iframe {
   width: calc(100% + 0px);
   display :flex;
   justify-content: center;
   align-items:center;
   height: 22vh;
   border: none;
   margin:0;
}
#selected-image-iframe {
   width: calc(100% + 0px);
   height: 70vh;
   border: none;
   /* border: green; */
   padding: 0;
   margin:0;
}

.gallery {
   display: flex;
   justify-content: center;
   gap: 10px;
   flex-wrap: wrap;
   float: right;
   padding: 0;
   }
.gallery img {
   width: 100px;
   height: 100px;
   object-fit: cover;
   cursor: pointer;
   margin-left: 1px;
   margin-right: 1px;
   margin-top: 1px;
   margin-bottom: 0px;
   border: 2px solid #f10cac;
   }
.gallery img:hover {
  opacity: 0.5; /* Brighten on individual image hover */
  transition: opacity 0.3s ease;
   border: 4px dotted green;
   }

.ifo {
  font-style: italic;
  font-size: 10px;
  /* padding-bottom: 20px; */
  width: 99px;
  height: 33px;
  border-style: none solid solid solid;
  border-color: black #f10cac #f10cac #f10cac;
  border-width: 1px;
  margin-bottom: 5px;
  text-align: center;
  padding: 3px;
  border-radius: 15px;
}

img {
  display: block;
  width: 50%;
 /* height: auto; */
  margin:auto; 
  /* margin-bottom: 30px; */
  /*width: 100%;*/
  /* height: auto; */
  /* border: 2px solid #f10cac; */
  /* border-radius: 5px; */
}

/*a > img:hover {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  border: dotted;
}*/

/* WebKit (Chrome, Edge, Safari) */
.scrollable-container::-webkit-scrollbar {
  width: 15px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: rgb(213, 216, 216);
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: blue;
}

/* Works in WebKit-based browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 15px; /* Scrollbar width */
}

::-webkit-scrollbar-track {
  background: radial-gradient(
    rgb(194, 239, 194),
    rgb(24, 92, 24)
  ); /* Track background */
}

::-webkit-scrollbar-thumb {
  background: #094f15; /* Scrollbar color */
  border-radius: 5px; /* Rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background: red; /* Darker color on hover */
}
