/* Mike's CSS */

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block; /* Inline-block to keep it inline */
    border-bottom: 1px dotted black;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 450px;  /* Minimum width */
    max-width: 600px; /* Maximum width */
    white-space: normal; /* Allows text to wrap */
    word-wrap: break-word; /* Ensures long words will break to fit */
  }
  
  .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  
  .tooltip:hover .tooltiptext {
    visibility: visible;
  }

/* Unique Prefix: pv_ (Popup Video) */
.pv_body {
  font-family: Arial, sans-serif;
}

.pv_button {
  padding: 10px 20px;
  font-size: 16px;
}

.pv_popup {
  display: none;
  position: fixed;
  z-index: 1001; /* Ensure it is above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.pv_popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  position: relative;
}

.pv_close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.pv_close-btn:hover,
.pv_close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.right-aligned-image {
  float: right;
  margin: 0 0 10px 10px; /* Adjust margins as needed */
}

.left-aligned-image {
  float: left;
  margin: 0 0 10px 10px; /* Adjust margins as needed */
}

.center-aligned-image {
  float: center;
  margin: 0 0 10px 10px; /* Adjust margins as needed */
}
