.toolbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #000000;
  color: #fff;
  font-size: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Added to evenly distribute logo and list items */
  padding: 0 20px; /* Adjusted padding to create space between logo and list items */
}

.toolbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.toolbar li {
  margin-right: 20px;
  cursor: pointer;
}

.toolbar li:hover {
  position: relative;
}

.toolbar li::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease-in-out;
}

.toolbar li:hover::after {
  transform: scaleX(1);
}

.toolbar__logo {
  max-width: 40px; /* Adjust the width of the logo to your desired size */
  max-height: 40px;
}
.toolbarLink {
  color: #fff; /* Set the text color to white */
  text-decoration: none; /* Remove underline (optional, if you don't want it) */
}

/* Add this CSS rule for the link when it's being hovered */
.toolbarLink:hover {
  color: #fff; /* Set the text color to white on hover (optional) */
}
body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 1rem;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }
    .hero-image {
      width: 100%;
      height: auto;
    }
    .course-info {
      text-align: center;
      padding: 1rem;
    }
    .contact-info {
      text-align: center;
      padding: 1rem;
    }
    .footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 1rem;
    }
.iframe-section {
      position: relative;
      height: calc(45.33vh - 40px);
      width: 100%;
      margin-top: 40px;
    }
    iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      border: none;
    }
.course-info-wrapper {

      display: flex; /* Use flexbox for horizontal alignment */
      align-items: center; /* Center vertically within the div */
      padding: 0 1rem;
    }
    .course-info h3 {
      margin: 0;
      padding: 0 20px; /* Increase padding for spacing between bars */
      line-height: 1.5; /* Center text vertically within the h3 element */
      flex: 1; /* Distribute the available space evenly among h3 elements */
      text-align: center; /* Center the text within each h3 element */
    }
    .course-info h3:not(:last-child) {
      border-right: 1px solid #ccc; /* Add a right border to create a bar */
    }

    .CouseQuickInfo_container {
      display: flex;
      align-items: center;
    }
    .numbered-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 0 20px; /* Add margin for spacing between elements */
    }
    .numbered-text h3 {
      position: relative;
      z-index: 1;
      background-color: white;
      padding: 0 10px;
      margin: 0;
    }
    .numbered-text p {
      margin: 5px 0 0 0;
    }
    .numbered-text::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      z-index: 0;
    }
    .numbered-text:not(:first-child)::before {
      left: -50%;
    }
    .vertical-bar {
      width: 2px; /* Adjust the width of the vertical bar */
      height: 100px; /* Adjust the height of the vertical bar */
      background-color: black;
    }
.rectangle {
      position: relative;
      width: 100%;
      height: 5vh;
      background-color: lightgray;
      box-sizing: border-box;
      border: 2px solid black;
      padding: 10px;
      box-sizing: border-box;
    }

    .text {
      font-size: 14px;
      font-weight: bold;
      position: absolute;
      top: 10px;
      left: 10px;
    }
    .text-right {
      display: flex;
      font-size: 14px;
      font-weight: bold;
      position: absolute;
      top: 10px;
      right: 10px;
      max-height: 16px;
    }

    .cylinder {
      position: absolute;
      bottom: 1px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      height: 4px;
      background-color: #fff;
      border: 1px solid black;
      border-radius: 5px;
      
    }

    .colored-portion {
      height: 100%;
      background-color: #3fd8ff; /* Set the desired color for the colored portion */
    }
    .progress-bar {
    width: 100%;
    height: 10px; /* Change this height to adjust the height of the progress bar */
    background-color: lightgray; /* Color of the whole progress bar */
    position: relative;
  }

  .progress-segment {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, red, red 20%, green 20%, green 70%, blue 70%);
  }

.BarShowing_container {
  display: flex;
  justify-content: center;
}

.left, .middle, .right {
  flex: 1;
}

.left[data-width], .middle[data-width] {
  flex: var(--width, 1);
}
.left {
  background-color: red;
}

.middle {
  background-color: green;
}

.right {
  background-color: blue;
}
.left-div {
  /* Set the width percentage for the left div */
  width: var(--cw, 100px);
  /*width: 30%;*/
  height: 4px;
  background-color: clear;
}

.middle-div {
  /* Set the width percentage for the middle div */
  width: var(--cw, 100px);
  /*width: 30%;*/
  height: 4px;
  background-color: green;
}
.marker-div {
  /* Set the width percentage for the middle div */
  width: 1%;
  height: 4px;
  background-color: black;
}

.right-div {
  /* The right div will automatically fill the remaining space */
  flex: 1;
  height: 4px;
  background-color: clear;
}
.bar-chart {
      width: 100%; /* Adjust the width for each chart */
      margin-bottom: 10px;
    }
    .holeDistanceLayouts {
      width: 33%;
    display: grid;
    height: 100%;
}
.mainContiner {
  display: flex; /* Use flex display to align children horizontally */
}
.contact-container {
  display: flex;
  justify-content: flex-end; /* Align items to the right side */
  padding: 10px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align text to the right within the container */
}

.phone-number {
  font-size: 16px;
  margin-bottom: 5px;
}

.website {
  text-decoration: none;
  color: blue;
}
.teebox-container {
  display: flex;
  justify-content: flex-end;
  top: 20;
}

.square {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  margin-left: 10px;
  border-radius: 5px;
  background-color: var(--color, #ffffff);
}

.content {
  text-align: center;
}

.above {
  font-size: 12px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  color: black;
}

.below {
  font-size: 10px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  color: black;
}

.CourseAbout-courseDetails {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: 75%;
}
.CourseAbout-details-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
/* Style for section titles */
/* Style for individual details items */
.CourseAbout-details-item,
.CourseAbout-courseArchitect-item,
.CourseAbout-rentalsServices-item,
.CourseAbout-practiceInstruction-item,
.CourseAbout-policies-item {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}

/* Style for labels */
.CourseValue-label {
    font-weight: bold;
}

/* Style for values */
.CourseValue-value {
    color: #333;
}
/* Style for architect links */
.CourseArchitect-link-item a {
    text-decoration: none;
    color: #007bff;
}
/* Style for the "Show Less" link */
.showLessLink {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #007bff;
    text-decoration: none;
}
.showLessLink:hover {
    text-decoration: underline;
}
.vertical-space {
   width: 100%;
    height: 35px;
}
.teeDistanceValue {
   color: var(--color, #ffffff);;
}
#moreContent {
  display: none;
}
#showMoreBtn {
      background: none;
      border: none;
      color: blue;
      text-decoration: underline;
      cursor: pointer;
}

#popup-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#popup-container img {
    max-width: 100%;
    max-height: 100%;
}