body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    background-color: #e8e8e8; /* Set background color */
}

.form-container {
  width: 350px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title {
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    margin: 10px 0 30px 0;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 15px;
}

.input {
    border-radius: 20px;
    border: 1px solid #c0c0c0;
    outline: 0 !important;
    box-sizing: border-box;
    padding: 12px 15px;
    width: 100%; /* Make input full width */
}

.form-btn {
    padding: 10px 15px;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: teal;
    color: white;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-btn:active {
    box-shadow: none;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.img-container img {
    width: 150px;
    height: 50px;
}
.error{
    color:red;
    padding:5px;
}
.wrapper {
    display: flex;
    min-height: 700px;
    width: 100%;
}

.menu-container {
    width: 200px;
    background-color: teal;
    color: #fff;
}

.menu-container img {
    margin-left: 39%; /* Center the image horizontally */
    padding-top: 20px;
    
}
.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    padding: 0;
    text-align:left;
    font-size:20px;
}
.menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: background-color 0.3s; /* Add transition for smooth effect */
}

.menu li a:hover {
    background-color: #4fb9af; /* Change background color on hover */
}
.content-container {
    flex: 1;
    padding: 20px;
}

.content-item {
    display: none;
}

.content-item.active {
    display: block;
}
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel {
    display: flex;
}

.slide {
    flex: 0 0 auto;
    display: none;
    position: relative; /* Ensure positioning context for the caption */
}

.slide img {
    width: 800px;
    height: 600px;
    object-fit: cover; /* Ensure the image covers the entire area */
}
.slide.active {
    display: block;
}

.caption {
    text-align: justify;
    width:800px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent background */
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent background */
    color: #fff;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev svg,
.next svg {
    width: 24px; /* Adjust icon size as needed */
    height: 24px; /* Adjust icon size as needed */
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: Arial, sans-serif;
  color: #333;
}
table thead{
      background: linear-gradient(148deg, rgba(32,220,153,1) 0%, rgba(0,174,190,1) 56%);
}

table th,
table td {
  padding: 10px;
  text-align: left;
}

/* Table header styling */
table th {
 text-align: left;
  color: #fff;
}

/* Alternating row colors */
table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Table action icons */
.action-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-icons a {
  color: #3498db;
  margin-right: 5px;
}

.action-icons a:hover {
  color: #2980b9;
}

.booking-form {
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group select {
    width: 94%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group select {
    appearance: none; /* Remove default arrow in select */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23555" d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

.form-group input[type="number"] {
    -moz-appearance: textfield; /* Firefox fix for number input */
}

.book-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(148deg, rgba(32,220,153,1) 0%, rgba(0,174,190,1) 56%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: #2980b9;
}
.success {
    color: green;
}
.error {
    color: red;
}
.cal{
    height:150px;
    font-family: 'Futura PT', sans-serif;
   font-size:55px;
   font-weight:500;
   color:#cecece;
   vertical-align: top;
   padding:0;
   width:150px;
}
.bookinginfo{
 font-size:12px;
   color:teal;
}
table caption{
    padding:10px;
}
.nav-btn {
 align-items: center;
 background: linear-gradient(148deg, rgba(32,220,153,1) 0%, rgba(0,174,190,1) 56%);
 border: 0;
 border-radius: 8px;
 box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
 box-sizing: border-box;
 color: #FFFFFF;
 font-family: Phantomsans, sans-serif;
 font-size: 18px;
 justify-content: center;
 line-height: 1em;
 min-width: 115px;
 padding: 3px;
 text-decoration: none;
 user-select: none;
 -webkit-user-select: none;
 touch-action: manipulation;
 white-space: nowrap;
 cursor: pointer;
 transition: all .3s;
}

.nav-btn:active,
.nav-btn:hover {
 outline: 0;
}

.nav-btn span {
 background-color: rgb(5, 6, 45);
 padding: 16px 24px;
 border-radius: 6px;
 width: 100%;
 height: 100%;
 transition: 300ms;
}

.nav-btn:hover span {
 background: none;
}

.nav-btn:active {
 transform: scale(0.9);
}