/*********************************************************

Laser tag booking and time selection

*********************************************************/
/* Add cursor pointer to the BOOKINGS link */
.nav-link[href="#"], .nav-link:not([href]) {
    cursor: pointer;
}

/*Shoppping cart badge */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0px;
}

.start-100 {
    left: 100%;
}

.translate-middle {
    transform: translate(-50%, -50%);
}

#basketIcon, #basketIconLarge {
    font-size: 16px; /* Adjust size as needed */
}

/* Cart Icon Neon Effect */
#basketIcon {
    color: #00f2ff; 
    background: linear-gradient(135deg, #00f2ff, #ff00e5, #ff00ff); 
    -webkit-background-clip: text;
    color: transparent; 
    border-radius: 50%;
    transition: transform 0.3s ease;
}

#basketIcon:hover {
    transform: scale(1.1); 
}

/* Cart Badge Neon Style */
#cartBadge {
    background-color: #ff00e5; 
    color: #fff;
    transition: transform 0.3s ease;
}

#cartBadge.show {
    display: block;
    transform: scale(1.2); 
}

/* Cart Icon Neon Effect */
#basketIconLarge {
    color: #00f2ff; 
    background: linear-gradient(135deg, #00f2ff, #ff00e5, #ff00ff); 
    -webkit-background-clip: text;
    color: transparent; 
    border-radius: 50%;
    transition: transform 0.3s ease;
}

#basketIconLarge:hover {
    transform: scale(1.1); 
}

/* Cart Badge Neon Style */
#cartBadgeLarge {
    background-color: #ff00e5; 
    color: #fff;
    transition: transform 0.3s ease;
}

#cartBadgeLarge.show {
    display: block;
    transform: scale(1.2); 
}




/* Neon effect when cart has items */
#cartBadge.show {
    background-color: #ff00e5; 
    box-shadow: 0 0 10px #ff00e5, 0 0 20px #ff00e5, 0 0 30px #ff00ff; 
}


.badge {
    font-size: 12px; 
    padding: 4px 6px; 
}

/* Small screen badge positioning */
#cartBadge {
    top: 0px; 
    left: 75% !important;
    transform: translateX(-50%); 
}

/* Large screen badge positioning */
#cartBadgeLarge {
    top: 0px; 
    left: 75%; 
    transform: translateX(-50%);
    color: white;
}



.time-selector {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 400px;
}

.time-hour {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.full-hour-slot {
    background-color:rgb(25, 138, 44); 
    color: #ffffff; 
    border-radius: 8px; 
    padding: 15px;
    margin-bottom: 10px; 
}

.dropdown-container {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-label {
    font-size: 14px;
    margin-right: 10px;
    color: #555;
}

.ticket-select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.confirm-ticket {
    padding: 8px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.confirm-ticket:hover {
    background-color: #0056b3;
}

.selected-tickets {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color:rgb(84, 29, 7);
}
/* Style for the loading screen */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Style for the spinner */
.spinner {
    border: 4px solid #f3f3f3; /* Light gray */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.custom-radio-btn {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Gradient blue */
    color: white;
    border: 1px solid #0056b3;
    padding: 10px 20px;
    margin-right: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border-radius: 5px;
}

.custom-radio-btn input[type="radio"] {
    display: none; 
}

.custom-radio-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d80); 
}

.custom-radio-btn.active {
    background: linear-gradient(135deg, #28a745, #218838); 
    border-color: #218838;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05); /* Slight zoom effect */
}

.selected-slot {
    background-color:rgb(208, 182, 16) !important; 
    border: 2px solid #0f5132; 
}

/* Custom Neon style for cart items */
#cartTimeSlots .cart-item {
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

/* Remove button neon effect */
#cartTimeSlots .remove-from-cart {
    background-color: rgba(255, 0, 0, 0.7);
    border: none;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the remove button */
#cartTimeSlots .remove-from-cart:hover {
    background-color: rgba(255, 0, 0, 1);
}

/* Slide animation */
#cartTimeSlots .cart-item {
    transition: all 0.3s ease-in-out;
}


#cartTimeSlots {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cartTimeSlots li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    line-height: 1.5;
}

#cartTimeSlots li .delete-time {
    color: #dc3545;
    cursor: pointer;
}

#cartTimeSlots {
    margin-top: 10px;
    font-size: 14px;
}

#cartTimeSlots li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

#cartTimeSlots .delete-time {
    cursor: pointer;
    color: #ff0000; /* Make the delete icon red */
    margin-left: 10px;
}

/* Neon Glow for Time Slot Items */
#cartTimeSlots li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #333;
    border-radius: 8px;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

#cartTimeSlots li:hover {
    background-color: #5eff5e;  /* Neon green on hover */
    border-color: #66ff66;  /* Neon green border */
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);  /* Neon glow effect */
}

#cartSidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background-color: #2c2f3f;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-in-out;
    /*padding: 15px;*/
    z-index: 9999;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

#cartSidebar.active {
    right: 0;
}

/* Cart Price Section */
#cartPrice {
    border-radius: 10px;
    padding: 20px;
    color: white;
    font-size: 1.3em;
}

/* Neon price styles */
#cartPrice span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* Neon Subtotal */
#cartPrice .subtotal {
    color: #00f2ff; /* Neon blue */
}

/* Neon Tax */
#cartPrice .tax {
    color: #c2ff19; /* Neon pink */

}

/* Neon Total */
#cartPrice .total {
    color: #00ff00; /* Neon green */
    font-size: 1.0em;
}


/* Neon Border */
.neon-border {
    border: 2px solid #0ff; /* Neon cyan */
    border-radius: 10px;
}

/* Neon Input */
.neon-input {
    background-color: black !important;
    color: rgb(252, 255, 255);
    border: none;
    font-weight: bold;
    caret-color: #0ff;
}

.neon-input::placeholder {
    color: rgba(255, 0, 0, 0.6);
}

/* Neon Icon */
.neon-icon {
    background-color: black;
    color: #0ff;
    border: none;
}




/* Checkout Price Section */
.checkoutPriceSection {
    border-radius: 10px;
    padding: 10px;
    color: white;
}

/* Neon price styles */
.checkoutPriceSection p {
    margin: 10px 0;
    font-weight: bold;
}

/* Neon Subtotal */
.checkoutPriceSection .subtotal {
    color: #00f2ff; /* Neon blue */
}

/* Neon Tax */
.checkoutPriceSection .tax {
    color: #e6f51c;
}

/* Neon Total */
.checkoutPriceSection .total {
    color: #00ff00; /* Neon green */
    font-size: 1.5em;
}


/* Checkout Sidebar - Main container */
#checkoutDiv {
    position: fixed;
    top: 0;
    right: -600px;
    width: 100%;
    max-width: 600px;
    height: 100vh; /* Full viewport height */
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    background-color: #2c2f3f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    padding: 20px;
    overflow-y: auto;  /* Enable vertical scrolling */
}


/* Close Button - Checkout Sidebar */
#closeCheckoutSidebar {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    background-color: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
}

#closeCheckoutSidebar:hover {
    color: #ff2f2f;  /* Neon red on hover */
}

.checkoutHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -20px -20px -20px -20px;
}

/* Checkout Header */
#checkoutDiv > .checkoutHeader {
    background: linear-gradient(90deg, #3c8dff, #ad55ee);  /* Neon blue to purple gradient */
    padding: 15px;
}

#checkoutDiv .checkoutHeader h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}


/* Checkout Sidebar Active state */
#checkoutDiv.active {
    right: 0;
}

/* Checkout Content - Scrollable */
.checkoutContent {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh; 
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

/* Close Button - Checkout Content */
.closeCheckoutContent {
    position: absolute;
    top: 10px;
    right: 25px;
    border: none;
    background: none;
    font-size: 2em;
    cursor: pointer;
    background-color: transparent;
    color: #ffffff;
    float: left;
    padding: 5px;
}

/* Checkout Form Container */
.checkoutFormContainer {
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

/* Booking Details in Checkout */
.checkoutFormContainer p {
    font-size: 14px;
}

.checkoutFormContainer p strong {
    color: #ff99cc;  /* Neon pink for strong labels */
}


/* Custom Neon style for checkout items */
#checkoutItems .checkout-item {
    margin: 10px 0;
    padding: 4px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
}

/* Background for each checkout item */
#checkoutItems .checkout-item span {
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
}


/* Form Inputs and Labels */
.checkoutForm input[type="text"], .checkoutForm input[type="email"] {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #222;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
}

.checkoutForm input[type="text"]:focus, .checkoutForm input[type="email"]:focus {
    border-color: #3c8dff;  /* Neon blue border on focus */
    background-color: #333;  /* Slightly darker background */
}

.checkoutForm label {
    color: #fff;
    font-size: 14px;
}

/* Submit Button */
.checkoutForm button[type="submit"] {
    background-color: #3c8dff;  /* Neon blue */
    color: white;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 5px;
    margin-top: 20px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.checkoutForm button[type="submit"]:hover {
    background-color: #2977d9;  /* Darker blue on hover */
}

/* Error/Success Message */
#errorCheckoutSuccess, #errorCheckoutFailure {
    font-size: 14px;
    color: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}

.alertCheckoutDanger {
    background-color: #ff4747;  /* Neon red for error */
}

.alertCheckoutSuccess {
    background-color: #66ff66;  /* Neon green for success */
}

/* Neon-style modal */
.booking-success-modal .modal-content {
    background: #0d0d0d;
    color: #00ffcc;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 15px #00ffcc;
}

/* Header */
.booking-success-header {
    background: #001a1a;
    border-bottom: 2px solid #00ffcc;
}

.booking-success-header .modal-title {
    font-weight: bold;
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

.booking-success-close {
    color: #00ffcc;
    font-size: 24px;
}

.booking-success-close:hover {
    color: #ff0066;
    text-shadow: 0 0 5px #ff0066;
}

/* Body */
.booking-success-body p {
    font-size: 18px;
    text-align: center;
}

/* Footer */
.booking-success-footer {
    border-top: 2px solid #00ffcc;
}

/* Button */
.booking-success-btn {
    background: #00ffcc;
    color: #0d0d0d;
    font-weight: bold;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
}

.booking-success-btn:hover {
    background: #ff0066;
    border-color: #ff0066;
    box-shadow: 0 0 15px #ff0066;
    color: white;
}


/* Sliding notification bar */
.cart-notification {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: top 0.5s ease-in-out;
    box-shadow: 0px 4px 10px rgba(246, 248, 248, 0.5);
    z-index: 99999;
}

/* Hover effect */
.cart-notification:hover {
    background-color: #00d0ff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #checkoutDiv {
        width: 100%;
        border-radius: 0;
    }

    .checkoutContent {
        padding: 10px;
    }
}

/* Checkout Content - Scrollable */
.checkout-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh; 
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

/* Prevent Scrolling on Background */
body.modal-open {
    overflow: hidden;
}

.fully-booked {
    background-color: red !important;
    color: #ffffff !important;
    font-weight: bold;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 1;
}

.fully-booked button {
    display: none; /* Hide the add button */
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    color: #fff;
    background: linear-gradient(90deg, #3c8dff, #ad55ee);
}
.cart-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.cart-header button {
    background-color: #ff2f2f;  /* Neon red close button */
    border: none;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-header button:hover {
    background-color: #ff4747;
}

.cart-content {
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 15px;
    padding: 20px;
    position: relative;
}
.cart-content p {
    margin-bottom: 10px;
    font-size: 16px;
}

.cart-content p strong {
    color: #ff99cc;  /* Neon pink for strong labels */
}

.checkout-cart-content {
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 25px;
    position: relative;
}
.checkout-cart-content p {
    margin-bottom: 15px;
}

#cartTimeSlotView {
    margin-top: 20px;
    font-size: 16px;
    color: #66ff66;  /* Neon green for time slots */
}

#cartEmptyNotice {
    margin-top: 10px;
    color: #ff6600;  /* Neon orange for empty cart notice */
    font-size: 14px;
}

/* Checkout and Empty Cart Buttons */
#checkoutButton {
    background-color: #3c8dff;  /* Neon blue */
    color: white;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 5px;
}

#checkoutButton:hover {
    background-color: #2977d9;  /* Darker blue for hover effect */
}

#emptyCart {
    background-color: #ff2f2f;  /* Neon red */
    color: white;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 5px;
    margin-top: 10px;
    display: none;  /* Initially hidden */
}

#emptyCart:hover {
    background-color: #ff4747;  /* Darker red on hover */
}

/* Neon Green Hover Effect */
button:hover {
    /*transform: scale(1.05);
    transition: transform 0.2s;*/
}


/* Adjustments for mobile view */
@media (max-width: 768px) {
    #cartSidebar {
        width: 100%;
        border-radius: 0;
    }
}

.image-container {
    position: relative;
    margin-bottom: 10px;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 128, 0.2); /* Purple overlay */
    border: 12px solid #02d2ff;
    border-radius: 50px;
    display: none;
  }
  .image-container.selected .image-overlay {
    display: block;
    border-radius: 50px;
  }

  .custom-well {
    background-color: #e9e9e9; 
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .custom-well-dark {
    background-color: #d9d9d9; 
    border: 1px solid #dee2e6;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
  }

  .custom-well-bookings{
    background-color: #e9e9e9; 
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 20px;
  }

  .timeSelectionButton {
      background-color: #007bff; 
      color: white; 
      padding: 10px 20px;
      border: none;
      border-radius: 5px; 
      cursor: pointer; 
      margin: 5px; 
      width: 150px;
  }

  /* Style for disabled buttons */
  .timeSelectionButton:disabled {
      background-color: #6c757d; 
      cursor: not-allowed; 
  }

  html, body {
      height: 100%;
      margin: 0;
      padding: 0;
  }

.fullscreen-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #00d0ff, #8d38ee, #ff1493); /* Neon blue, purple, pink gradient */
    background-size: 400% 400%;
    animation: gradientAnimation 6s ease infinite;
    overflow: hidden;
}

/* Neon Form Container */
.neon-form-container {
    background: #000; /* Black background */
    border: 5px solid #ff00ff; /* Neon pink border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    color: #0ff; /* Neon cyan text */
}

/* Neon Headers */
.neon-form-container .neon-heading {
    color: #9900ff; /* Neon pink */
}

/* Input Fields */
.neon-input {
    background: #111; /* Dark input background */
    color: #00ffcc; /* Neon cyan text */
    border: 2px solid #00ffcc;
}

/* Input Placeholder */
.neon-input::placeholder {
    color: rgba(0, 255, 204, 0.7);
}

/* Input Fields on Focus */
.neon-input:focus {
    background: #222;
    border-color: #ff1493; /* Neon pink */
}

/* Neon Buttons */
/*
.neon-button {
    background: linear-gradient(45deg, #ff00ff, #00ffcc);
    border: none;
    padding: 10px 15px;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    transition: 0.3s ease;
}

.neon-button:hover {
    box-shadow: 0 0 15px rgba(0, 255, 204, 1);
}
*/
/* Select Dropdown */
.neon-select {
    background: #111;
    color: #ff00ff;
    border: 2px solid #00ffcc;
    box-shadow: 0 0 5px rgba(0, 255, 204, 0.7);
}

/* Neon Textarea */
.neon-textarea {
    background: #111;
    color: #00ffcc;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.7);
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Neon Lasers */
.laser {
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(255, 0, 255, 0.8); /* Neon pink */
    box-shadow: 0 0 10px rgba(255, 0, 255, 1), 0 0 20px rgba(255, 0, 255, 1);
    animation: laserAnimation 3s linear infinite;
    opacity: 0.7;
}

@keyframes laserAnimation {
    0% { transform: translateY(-100%); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}


  #loadingIcon {
      margin-left: 10px; /* Adjust spacing as needed */
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
      display: none;
  }
  input[type="date"] {
      /* Firefox hides the calendar popup when this is set */
      -moz-appearance: none;
  }
  .box-shadow-well {
    box-shadow: 2px 2px 16px 2px rgba(0, 0, 0, 0.4);
  }

.font-color-grey-light{
  color: #666666;
}

.image-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.equal-height {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.screenLoader{
	position: fixed;
	left: 0px;
	top: 56px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	color: #fff;
	background: url("../img/loader.gif") center no-repeat;
	background-color:#fff !important;
	opacity: 1;
}


/* Neon Gradient Style for Buttons */
#numberOfPlayers .btn {
    width: 50px; 
    height: 50px; 
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background-color: #336699; 
    color: #fff;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#numberOfPlayers .btn:hover {
    background-color: #00d0ff;
}

/* Decrement and Increment Buttons with rounded corners */
#numberOfPlayers .decrement {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

#numberOfPlayers .increment {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Input field matching button height and neon border */
#numberOfPlayersInput {
    max-width: 80px;
    text-align: center;
    height: 50px; /* Match button height */
    font-size: 1.2em;
    border: 2px solid #00f2ff; /* Neon blue border */
    background-color: #222; /* Dark background to match neon look */
    color: white;
    border-radius: 5px;
}

/* Focus effect for input field */
#numberOfPlayersInput:focus {
    border-color: #ff00e5; /* Neon pink when focused */
    outline: none;
}

/* Icon size inside buttons */
#numberOfPlayers .fa {
    font-size: 20px;
}


/* Sliding Menu Styles */
.sliding-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #343a40; /* Dark background */
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-sizing: border-box;
}

.sliding-menu.open {
    right: 0;
}

/* Header for the sliding menu */
.sliding-menu-header {
    background-color: limegreen; /* Lime green background */
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Close button styling */
.close-menu-btn {
    background: black; /* Black background */
    border: none;
    color: white;
    font-size: 30px; /* Larger size */
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circular button */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu links container */
.menu-links {
    padding: 20px;
}

/* Individual link styling */
.menu-link {
    display: block; 
    color: #00ff51 !important; 
    font-size: 18px;
    padding: 10px 15px; 
    margin: 10px 0; 
    border-radius: 4px; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1); 
    color: #10a338; 
}

.menu-link-color{
    color: #00ff51; 
    text-decoration: none;
}
.menu-link-color:hover{
    color: #10a338;
    text-decoration: none;
}

.input-group-text {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

#cartIcon {
    display: none; /* Hide cart when checkout opens */
}

#cartIcon.hidden {
    display: block;
    transition: opacity 0.5s ease-in-out;
}

/* Form Inputs */
input[type="text"], input[type="email"], input[type="date"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button styling */
button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: 1.1em;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

input[type="checkbox"] {
    margin-right: 10px;
}

/* Loading spinner */
.loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #2a882a;
    background-color: rgb(108, 233, 108);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Orange background for selected time slots */
.time-slot.selected {
    background-color: #54a9f8; 
    border-color: #132c9c; 
}

.time-slot .text-line {
    display: flex;
    align-items: center;
    flex-grow: 1;
    color: #333;
}

.time-slot strong,
.time-slot i,
.time-slot span {
    display: inline-block;
    margin: 0;
}

.time-slot .fa-plus,
.time-slot .fa-times,
.time-slot .fa-user {
    padding-right: 5px !important;
}

.add-ticket {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lasertag-top-margin{
    margin-top: 100px;
}

.add-btn {
    background-color: #007bff !important;
    border-color: #0e3157 !important;
    color: #fff;
}

.add-btn:hover {
    background-color: #0056b3;
}

.remove-btn {
    background-color: #dc3545 !important;
    border-color: #680e17 !important;
    color: #fff;
}

.remove-btn:hover {
    background-color: #a71d2a;
}

#bookingSuccessModal{
    z-index: 99999;
}
.modal-backdrop {
    z-index: 99998;
}

/* Persistent cart notification */
.persistent-cart-notification {
    position: fixed;
    top: 75px;
    right: -150px; 
    width: 150px;
    height: 55px;
    background-color: #316ba8;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: right 0.5s ease-in-out;
    z-index: 9999;
    padding-top:15px;
    border-radius: 5px 0 0 5px;
}

/* Hover effect */
.persistent-cart-notification:hover {
    background-color: #00aaff;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .time-slot {
        flex-direction: column;
        align-items: flex-start;
    }

    .time-slot .add-ticket {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .time-slot .text-line {
        display: block;
        flex-grow: unset;
        text-align: left;
    }

    .selected-tickets {
        display: block;
        margin-top: 5px;
    }
}

/* Make it responsive */
@media (max-width: 768px) {
    .checkout-div {
        width: 100%;
    }
    .padding-removal-laser{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .persistent-cart-notification {
        right: -50%;
        width: 50%;
        top: 45px;
    }
}


/* Responsive Widths */
@media (min-width: 768px) {
    .sliding-menu {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .sliding-menu {
        width: 25%;
    }
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .image-container {
        height: 200px;
    }
    .item-padding-remove{
      padding: 0px !important;
    }
    .lasertag-top-margin{
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .image-container {
        height: 150px;
    }
    .item-padding-remove{
      padding: 0px !important;
    }
}