.custom-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

body {
    transform-origin: top left; /* Ensure scaling starts from the top left corner */
    transition: transform 0.2s; /* Smooth transition */
    overflow-x: hidden; /* Prevent horizontal overflow */
}
.content-wrapper {
    max-width: 100vw; /* Prevent content from exceeding the viewport width */
}

.typewriter-email-response-box {
    max-width: 600px;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 380px; /* Set a fixed height based on the tallest slide */
    overflow: hidden; /* Ensure content scrolls within the box */
  }
  .typewriter-field {
    display: flex;
    align-items: center;
    margin-bottom: 5px; /* Reduced margin to move fields up */
    flex-wrap: wrap;
  }
  .typewriter-field-label {
    font-weight: bold;
    margin-right: 5px;
    font-size: 11px;
    min-width: 30px;
    display: flex;
    align-items: center;
    padding-top: 0px; /* Raised by 5px */
  }
  .typewriter-field-input {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .typewriter-pill-container {
    display: flex;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
    padding-top: 10px;
  }
  .typewriter-user-image {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-left: -5px;
  }
  .typewriter-email-pill {
    font-size: 13px; 
    display: flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 50px;
    background-color: #e0e0e0;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .typewriter-email-pill span {
    display: flex;
    align-items: center;
  }
  .typewriter-close {
    margin-left: 5px;
    cursor: pointer;
    color: #888;
  }
  .content {
    max-height: 315px; /* Set a max height */
    overflow-y: auto; /* Enable vertical scrolling */
    flex-grow: 1;
  }
  .typewriter-demo {
    font-family: Arial, sans-serif;
    white-space: pre-wrap;
    margin-bottom: 5px;
    min-height: 20px;
    display: inline-block;
    width: 100%;
    font-size: 13.2px; /* 20% bigger */
    line-height: 1.2; /* Ensure consistent line height */
    vertical-align: top; /* Align text to the top */
    flex-grow: 1; /* Allow the demo area to grow */
  }
  .typewriter-glow-cursor {
    animation: glow 0.5s infinite alternate;
  }
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #5b07f7, 0 0 40px #5b07f7, 0 0 60px #5b07f7, 0 0 80px #5b07f7, 0 0 100px #5b07f7;
    }
    to {
      text-shadow: 0 0 20px #5b07f7, 0 0 80px #5b07f7, 0 0 120px #5b07f7, 0 0 160px #5b07f7, 0 0 200px #5b07f7;
    }
  }
  .typewriter-email-reply {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow the reply section to grow and scroll */
    overflow: auto;
  }
  .typewriter-email-reply .quote {
    border-left: 2px solid #5b07f7;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 0.8em; /* Smaller quote text */
    line-height: 1.2; /* Ensure consistent line height */
    vertical-align: top; /* Align text to the top */
    flex-grow: 1; /* Allow the quote to take up remaining space */
    overflow-y: auto; /* Enable vertical scrolling for the quote */
  }
  .typewriter-email-reply-header {
    font-size: 11px;
    color: #888; /* Return to prior color */
    flex-shrink: 0; /* Prevent the header from shrinking */
  }
  .typewriter-send-container {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    text-align: left;
    flex-shrink: 0; /* Prevent the container from shrinking */
    margin-top: auto; /* Push to the bottom */
  }
  .typewriter-send-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a780ef;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    font-size: 11px;
    vertical-align: middle;
    font-weight: bold; /* Bold text */
  }
  .typewriter-send-button:hover {
    background-color: #a780ef;
  }
  .carousel-indicators {
    display: none;
  }
  @keyframes flipIn {
    0% {
      transform: rotateX(-90deg);
      opacity: 0;
    }
    100% {
      transform: rotateX(0);
      opacity: 1;
    }
  }
  .flip-animation {
    animation: flipIn 0.5s ease-in;
  }
  .typewriter-quote {
    border-left: 2px solid #5b07f7;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 0.8em; /* Add this line to make the text smaller */
    line-height: 1.2; /* Ensure consistent line height */
    vertical-align: top; /* Align text to the top */
  }

  #main-logo {
    all: unset; /* Resets all inherited styles */
    display: inline; /* Set display to inline, or whatever is appropriate for your element */
    /* Add any specific styles needed */
  }

  .cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    display: none;
    z-index: 1000;
}

.cookie-consent-banner p {
    margin: 0;
    padding-right: 10px;
    display: inline-block;
}

.cookie-consent-banner a {
    color: #fff;
    text-decoration: underline;
}

.accept-cookies {
    background-color: #8042f4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}
