/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12 Oct 2023, 23:40:08
    Author     : Jason
*/

/* Theme Colors */
/*
White - 255/255/255 #FFFFFF
Black - 35/31/32 #231F20
Grey - 88/89/91 #58595B
Blue - 42/99/117 #2A6375
*/



/* General Styling */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* This prevents horizontal scrollbar due to the image width */
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}
body > div.mainBody {
  color: #231f20;
}
mainBody {
  padding: 0 10%;
}
a{
    color: #2A6375; /* Set the font color */
    text-decoration: underline; /* Underline the text */
    font-weight: bold; /* Make the text bold */
}

/* Navbar Styling */
.navbar {
  background-color: #2a6375;
}

#navbarSupportedContent {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
}

.nav-item {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #ffffff;
}
.nav-item > ul {
  list-style: none;
  text-align: center;
}
.nav-item > li {
  position: relative;
  color: #ffffff;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffff;
}

.nav-item > a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 15px 20px;
  position: relative;
}
.nav-item > a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.nav-item > a:hover:after {
  width: 100%;
  left: 0;
}
.nav-item > .dropdown-toggle::after {
  background-color: #2a6375;
}
.navbar-nav {
  --bs-nav-link-hover-color: none;
}

/* Keep the active item underlined */
.nav-item > .active:after {
  width: 100%;
  left: 0;
}

.navbar-light .navbar-nav .nav-link{
    color: #FFFFFF;
}


/* Custom styles for the hamburger button */
.hamburgerButton {
    background-color: none; /* Set your desired background color */
    border-color: #FFFFFF; /* Set your desired border color */
    color: #FFFFFF; /* Set your desired text color */
}

/* Custom styles for the toggler icon */
.hamburgerButton .navbar-toggler-icon {
    background-color: none; /* Set your desired icon color */
    color: #FFFFFF !important;;
}

/* Header Images*/

.header {
    position: relative;
    width: 100%;
    height: auto; /* or set the desired height */
    overflow: hidden;
}

.headerContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

#headerBackgroundImage {
    width: 100%;
    height: auto; /* or set the desired height */
    display: block;
    object-fit: cover; /* Maintain aspect ratio */
}

.headerLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    z-index: 1; /* Ensure the logo sits on top of the background image */
}


/***************** Booking Calendar CSS **********************/
/* Styles for the button */
.btn {
  text-decoration: none;
  padding: 0.5rem;
  border: 1px solid #58595B;/*Grey*/
  background-color: #2A6375;/*Blue*/
  color: #FFFFFF;/*White*/
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #2980b9; 
  color: #FFFFFF;
}

.next-button {
  float: right;
}

.next-button,
.prev-button {
  text-align: center;
}

/* Styles for the calendar */


/* Default styling */
.table-bordered {
    width: 100%;
}

/* Responsive font size */
td {
    font-size: 1rem;
}

/* Media query for smaller screens */
@media (max-width: 576px) {
    /* Adjust width, height, and font size for smaller screens */
    .availabilityCalendar {
        font-size: 0.8rem;
    }

    td {
        font-size: 0.8rem;
    }

    /* Hide full day names and show abbreviated names */
    th.full {
        display: none;
    }

    th.abbr {
        display: table-cell;
    }
}

/* Media query for medium-sized screens */
@media (min-width: 577px) and (max-width: 768px) {
    .availabilityCalendar {
        font-size: 0.9rem;
    }

    td {
        font-size: 0.9rem;
    }
}

/* Default styles for wider screens */
@media (min-width: 769px) {
    th.abbr {
        display: none;
    }

    th.full {
        display: table-cell;
    }
}

/*************************************/
/*.availabilityCalendar {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}*/

th,
td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #2A6375; /*Blue*/
}

th {
    background-color: #58595B;
    color: white;
}

td {
    font-size: 1rem;
    position: relative;
    height: 100px; /* Set a fixed height for each cell */
}
/* Styles for the bookings panel */


.book-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.book-button:hover {
  background-color: #2980b9;
}

.navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  width: 100%;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.event-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-left: 15%;
        margin-right: 15%;
    }

    .event-block {
        width: calc(50% - 20px);
        /* The 'calc' function is used to subtract the margin between blocks */
        margin: 10px;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

/* Media query for smaller devices */
@media only screen and (max-width: 600px) {
    .event-block {
        width: 100%; /* Change width to 100% for 1 per row on smaller devices */
    }
}

    .event-info {
        display: flex;
        flex-direction: column;
    }

    .event-info div {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }

    .event-info span strong {
        margin-right: 10px;
    }

    .bookSlotButton {
        background-color: #2A6375; /*Blue*/
        color: #FFFFFF; /*White*/
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        align-self: center;
    }
    
    .bookSlotButton:disabled {
        background-color: #58595B; /*Grey*/
    }

    .bookSlotButton:hover {
        background-color: #FFFFFF; /*White*/
        color: #2A6375; /*Blue*/
        border: 1px solid #2A6375; /*Blue*/
        font-weight: bolder;
    }

    .no-events {
        color: #777;
        font-size: 18px;
        margin-top: 15px;
    }

    /* Media query for smaller screens */
    @media screen and (max-width: 768px) {
        .event-block {
            width: calc(50% - 20px);
            /* Adjusting width for smaller screens */
        }
    }

    /* Media query for even smaller screens */
    @media screen and (max-width: 576px) {
        .event-block {
            width: calc(100% - 20px);
            /* Displaying one block per row for even smaller screens */
        }
    }
    
/***************** Modal CSS **********************/
/* Styles for the modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}




/*************Style of the Slideshow**************************************/
/* Slideshow container */
.slideshow-container {
    position: relative;
    max-width: 100%;
}

/* Hide the images by default */
.slideshow-container .pageSlideshow {
    display: none;
    border: 2px solid transparent; /* Add transparent border by default */
}

/* Next & previous buttons */
.slideshow-container .prevSlideshow,
.slideshow-container .nextSlideshow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: rgba(42, 99, 117);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.slideshow-container .nextSlideshow {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slideshow-container .prevSlideshow:hover,
.slideshow-container .nextSlideshow:hover {
    background-color: rgba(42, 99, 117, 0.8);
}

/* Add border to images */
.slideshow-container .pageSlideshow img {
    /*width: 100%;*/
    max-height: 500px;
    max-width: 100%;
    margin: 0 auto; 
    text-align: center;
}

/* Thumbnail container */
.thumbnail-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin; /* Set the width of the scrollbar */
    scrollbar-color: rgba(42, 99, 117, 0.8) rgba(255, 255, 255, 0.5); /* Set the color of the scrollbar */
}

/* Customize scrollbar track */
.thumbnail-container::-webkit-scrollbar {
    width: 10px;
}

/* Customize scrollbar thumb */
.thumbnail-container::-webkit-scrollbar-thumb {
    background-color: rgba(42, 99, 117, 0.8); /* Set the color of the thumb */
    border-radius: 5px; /* Set the border radius of the thumb */
}

/* Customize scrollbar track on hover */
.thumbnail-container::-webkit-scrollbar-track:hover {
    background-color: rgba(42, 99, 117, 0.5); /* Set the color of the track on hover */
}

/* Thumbnail styles */
.thumbnail-container img {
    max-height: 100px; /* Set a fixed height for the thumbnails */
    width: auto;
    cursor: pointer;
    margin: 5px;
}

/**********************************/
/** Location Buttons **/

.location-buttons-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Adjust the gap between buttons */
    padding-top: 15px;
    padding-bottom: 15px;
}

.location-button {
    width: 150px; /* Set a fixed width for each button */
    height: 150px; /* Set a fixed height for each button */
    padding: 10px;
    font-size: 20px;
    background-color: #58595B; /* Grey background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease; /* Added opacity transition */
    outline: none; /* Remove outline on focus */
    display: flex; /* Center text vertically and horizontally */
    justify-content: center;
    align-items: center;
    opacity: 1; /* Initially full opacity */
}

.location-button.active {
    background-color: #2A6375; /* Blue background for active button */
    opacity: 1; /* Ensure the active button has full opacity */
}

.location-button:hover {
    background-color: 	hsl(194, 47%, 40%); /* Blue background for hovered button */
    opacity: 1; /* Ensure hovered button has full opacity */
}



/** Scrollable Calendar **/

.availabilityCalendar h2 {
    text-align: center; /* Center the text horizontally */
    padding: 10px 0; /* Add padding for spacing */
    margin-bottom: 20px; /* Adjust margin as needed */
    font-size: 24px; /* Adjust font size */
    font-weight: bold;
    color: #FFFFFF; /* Change text color */
    background-color: #2A6375; /* Add background color */
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
}


.calendar-container {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.calendar-wrapper {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
}

.calendar-scroll {
    display: flex; /* Ensure horizontal scrolling */
}

.horizontal-calendar {
    list-style-type: none;
    padding: 0;
    display: flex; /* Display days horizontally */
}

.horizontal-calendar li {
    flex: 0 0 auto;
    padding: 10px;
    border: 1px solid #ccc;
    margin-right: 5px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.horizontal-calendar li:hover {
    transform: translateY(-3px);
}

.scroll-button {
    background-color: #2A6375;
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-button:hover {
    background-color: hsl(194, 47%, 50%);
}

#scroll-left {
    margin-right: 10px;
}

#scroll-right {
    margin-left: 10px;
}

.selected-day .far.fa-calendar-check {
    color: hsl(194, 47%, 50%); /* Change the color to your desired color */
}

/*Styling the Event*/
.availabilityCalendarEvent {
    color: black;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column; /* Stack the event content vertically */
    align-items: center; /* Center the items horizontally */
    margin-top: 5px; /* Adjust the margin as needed */
}


.availabilityCalendarEvent a {
    display: flex; /* Ensure the anchor tag is displayed as a flex container */
    align-items: center; /* Center the content vertically */
}

.availabilityCalendarEvent a i {
    margin-left: 5px; /* Add space between the day number and icon */
}

/* Styling the scrollbar */
.calendar-wrapper::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

/* Track */
.calendar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
}

/* Handle */
.calendar-wrapper::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar handle */
    border-radius: 4px; /* Rounded corners */
}

/* Handle on hover */
.calendar-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color on hover */
}

.day-number {
    display: inline-block;
    width: 100%; /* Ensure the day number takes up the full width of its container */
    text-align: center; /* Center the day number horizontally */
    margin-top: 13px; /* Reset margin */
}

.day-container {
    display: flex;
    flex-direction: column; /* Stack the header and day number vertically */
    align-items: center; /* Center the items horizontally */
}


.horizontal-calendar-empty-cell {
        display: none;
    }

/****************************************************************/
/* CSS for the footer */

/* Custom CSS for the specified footer */
.footer {
    background-color: #58595B;
    padding: 0;
    padding-top: 70px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul {
    list-style-type: none; /* Remove bullet points from all lists */
    padding-left: 0; /* Remove default left padding */
    margin-left: 0; /* Remove default left margin */
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
  list-style-type: none;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
  .logo img {
        max-height: 100%; /* Set maximum height to 50% of the parent container */
        max-width: 100%; /* Set maximum width to 50% of the parent container */
        vertical-align: middle; /* Align image vertically in the middle */
        display: block; /* Ensure block display to remove any vertical spacing */
        margin: 0 auto; /* Center the image horizontally */
    }
    
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
  .logo img {
        max-height: 100%; /* Set maximum height to 50% of the parent container */
        max-width: 100%; /* Set maximum width to 50% of the parent container */
        vertical-align: middle; /* Align image vertically in the middle */
        display: block; /* Ensure block display to remove any vertical spacing */
        margin: 0 auto; /* Center the image horizontally */
    }
}

.logo {
    text-align: center; /* Center the logo */
    width: 100%; /* Occupy full width of the container */
}

.logo img {
    max-height: 50%; /* Set maximum height to 50% of the parent container */
    max-width: 50%; /* Set maximum width to 50% of the parent container */
    vertical-align: middle; /* Align image vertically in the middle */
    display: block; /* Ensure block display to remove any vertical spacing */
    margin: 0 auto; /* Center the image horizontally */
}

/***************************************************************************/
/* Fleet Info Section on the home page */
.fleetInfo {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 20px;
        background-color: #f5f5f5;
        border-radius: 8px;
    }

    .fleetInfo h2 {
        text-align: left;
        background-color: #2A6375;
        color: #FFFFFF;
        padding: 10px 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        width: 100%;
    }

    .fleetInfo .col-sm-4 {
        width: calc(33.33% - 20px);
        margin-bottom: 20px;
        background-color: #FFFFFF;
        padding: 20px;
        border-radius: 8px;
        box-sizing: border-box;
        transition: all 0.3s ease;
        flex-direction: column; /* Added */
    }

    .fleetInfo .col-sm-4:hover {
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    }

.fleetInfo h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px;
}

.fleetInfo h3::after,
.fleetInfo h3::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: hsl(194, 47%, 40%);
    bottom: 0;
    left: 0;
    right: 0;
}

.fleetInfo h3::before {
    top: 0;
}

@media only screen and (max-width: 600px) {
  .fleetInfo .col-sm-4 {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1100px) {
  .fleetInfo .col-sm-4 {
    width: 100%;
  }
}

    
/***************************************************/
/* Make a booking Banner */
    .banner {
        background-color: #2A6375;
        padding: 20px;
        text-align: center;
        color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin: 50px auto;
    }

    .banner h2 {
        font-size: 24px;
        margin: 0;
        letter-spacing: 1px;
        text-transform: uppercase; /* Capitalize the text */
    }

    .banner h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #fff;
        margin: 10px auto;
    }

    .banner p {
        margin-top: 10px;
        text-align: center;
    }

    .banner a {
        color: #fff;
        font-weight: bold;
        text-decoration: underline; /* Underline by default */
    }

    .banner a:hover {
        text-decoration: none; /* Remove underline on hover */
    }

    .banner:hover {
        transform: translateY(-3px);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

/*****************************************************/
/* Checklists */

/*section {
  
  margin: 0 auto;
  max-width: 40rem;
  padding: 1rem;
}*/

section .checklist {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

/*h3 {
  font-weight: 700;
  color: #231F20; /* Black */
  /*box-sizing: border-box;
}*/

h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: #222;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px;
}

h3::after,
h3::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: hsl(194, 47%, 40%);
    bottom: 0;
    left: 0;
    right: 0;
}

h3::before {
    top: 0;
}


.gradient-list {
  list-style: none;
  margin: 1.75rem 0;
  padding-left: 1rem;
  box-sizing: border-box;
}

.gradient-list li {
  background: #FFFFFF; /* White */
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
  margin-top: 1rem;
  padding: 1rem;
  position: relative;
  box-sizing: border-box;
}

.gradient-list li::before {
  background: linear-gradient(135deg, #2A6375 0%, #58595B 100%); /* Blue to Grey */
  border-radius: 1rem 0 0 1rem;
  content: '';
  height: 100%;
  left: -1rem;
  position: absolute;
  top: 0;
  width: 0.5rem;
  box-sizing: border-box;
}

.gradient-list li::after {
  background: #FFFFFF; /* White */
  border-radius: 0 0 0.5rem 0.5rem;
  bottom: -0.5rem;
  content: '';
  height: 1rem;
  left: -1rem;
  position: absolute;
  right: -1rem;
  box-sizing: border-box;
}

.gradient-list li:nth-child(odd)::before {
  background: linear-gradient(135deg, #2A6375 0%, #FFFFFF 100%); /* Grey to White */
  box-sizing: border-box;
}

.gradient-list li:nth-child(even)::before {
  background: linear-gradient(135deg, #FFFFFF 0%, #2A6375 100%); /* White to Grey */
  box-sizing: border-box;
}

.gradient-list li + li {
  margin-top: 2rem;
  box-sizing: border-box;
}

/*****************************************************/
/* Block Quotes */

.blockquote {
    padding: 60px 80px 40px;
    position: relative;
}
.blockquote p {
    font-size: 35px;
    font-weight: 700px;
    text-align: center;
}

.blockquote:before {
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  padding-top:5px;
  content:"\f10d";
  font-size: 50px;
  color: #58595B80;
   
}

.blockquote::after {
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -100px;
    position: absolute;
    border-bottom: 3px solid #2A6375;
    height: 3px;
    width: 200px;
}


/*****************************************************/
/* Google Map  */
/* Set the size of the div element that contains the map */
#map {
    height: 400px; /* The height is 400 pixels */
    width: 100%; /* The width is the width of the web page */
}

/**********************************************************/
    /* CSS for the book button and expandable options */
    #bookButton {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        background-color: #2A6375;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    #bookButton:hover{
        background-color: hsl(194, 47%, 50%);
    }

    #bookOptions {
        display: none;
        position: fixed;
        bottom: 70px;
        right: 20px;
        background-color: #FFFFFF;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        z-index: 998;
    }

    #bookOptions h5 {
        color: #2A6375;
        text-align: justify;
        font-weight: bolder;
    }

    #bookOptions button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border: 1px solid #58595B;
        border-radius: 5px;
        cursor: pointer;
        background-color: #FFFFFF;
        font-weight: bold; /* Make button text bold */
    }

    #bookOptions a {
        text-decoration: none;
        color: #231F20;
    }

    #bookOptions button:hover {
        color: #2A6375; /* Text color on hover */
    }
    
    #bookOptions p {
        color: #231F20;
        text-align: center;
        font-weight: bold;
    }
