body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px; 
    height: 115px;	
}

label {
    font-weight: bold;
}

.logo img {
	margin-top: 20px;
    max-height: 100%;
    width: 150px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(200, 200, 200, 0.5);
}

#formL {
    width: 300px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-form {
    width: 500px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  font-weight: bold;
}

.stats-bar{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin:25px 0 40px;
}

.stat{
  position:relative;
  width:160px;
  height:160px;
  text-align:center;
  margin:0 20px;
}

.info-box {
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 8px;
    font-size: 16px;
}
.info-box.success {
    background-color: #e0ffe0;
    color: #006600;
    border: 1px solid #00cc00;
}
.info-box.notice {
    background-color: #fff8e6;
    color: #9f6f00;
    border: 1px solid #e5c100;
}

.donut        { width:100%; height:100%; }
.donut .track { fill:none; stroke:#e5e5e5; stroke-width:14; }
.donut .value { fill:none; stroke:#00dcff;  stroke-width:14;
                stroke-dasharray:283; stroke-dashoffset:0; }

.donut text.primary   { fill:#00dcff; font:600 26px/1 'Segoe UI',sans-serif; }
.donut text.secondary { fill:#666;    font:400 10px/1 'Segoe UI',sans-serif; }

.stat-label{
  margin-top:8px;
  font:600 14px/1 'Segoe UI',sans-serif;
  color:#555;
}

input[type=text], input[type=password], input[type=email], input[type=submit] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

textarea {
    width: 98%;
    height: 200px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    resize: vertical;
    margin: 10px 0;	
}

input[type=text], input[type=password], input[type=email] {
        width: 93%;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.short-input {
    width: 70px;
}

table td input[type="text"],
table td input[type="date"] {
    width: 100%;
    box-sizing: border-box;
}

/* Override table cell rules for specific short inputs */
table td input.short-input {
    width: 70px;
}

input[type=card-text]{
    font-size: 16px;
}

input[type=submit] {
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #0ce8ff;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #5a5959;
}

header {
    background: #333;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: #ccc 1px solid;
}

header a {
    font-family: emoji;
    color: #0ce8ff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    list-style: none;
    display: flex; 
    align-items: center; 
    justify-content: flex-end;
}

header ul li {
    padding: 0 20px;
}

header nav {
    width: 100%;
}

header .highlight, header .current a {
    color: #e8491d;
    font-weight: bold;
}

header a:hover {
    color: #80f1fc;
    font-weight: bold;
}

.menu-toggle {
    display: none;
}

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

.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-wrapper {
    flex: 1;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 70px;
    width: 100%;
}

.title {
    margin-top: 10px;
    text-align: center;
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
}

.dashboard-header {
    border-bottom: 2px solid #ddd;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;	
    margin-top: 20px;	
}

.dashboard-nav {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding-left: 0;
}

#changePasswordForm {
    display: none;
}

.dashboard-nav li {
	border-radius: 5px;
    background: #444;
    padding: 10px;
}

.dashboard-nav a {
    text-decoration: none;
    color: #0ce8ff;
    font-weight: bold;
}

.dashboard-nav a:hover {
    text-decoration: overline;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 10px;
}

.message {
    position: fixed; 
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    margin: 0;
    padding: 10px;
    background-color: #333;
    color: #0ce8ff;
    text-align: center;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 2s ease-in-out;
}

.message.show {
    opacity: 1;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: auto;
}

.service-img {
    flex: 1;
    width: 300px;
    height: auto;
    border-radius: 8px;
    margin-right: 20px;
}

.service-text {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

.btn {
    background-color: #0ce8ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #009cbf;
    transition: background-color 0.3s;
}

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.feature {
    flex: 1;
    margin: 0 10px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonials {
    padding: 20px 0;
}

.testimonial {
    background: #fff;
    margin: 10px 0;
    padding: 20px;
    border-left: 15px solid #0ce8ff;
}

.about-us {
    text-align: left;
    /* padding: 20px 0; */
}

.about-us h2 {
    color: #333;
}

.about-us p, .about-us ul {
    line-height: 1.6;
}

.about-us ul {
    list-style-type: none;
    padding: 0;
}

.about-us ul li::before {
    content: "✔";
    color: #0ce8ff;
    padding-right: 8px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.team-member {
	width: 300px;
    text-align: center;
    margin: 10px;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}

.about-us, .our-location {
    margin-bottom: 20px;
    /* padding: 20px; */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-us h1, .our-location h2 {
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-top: 20px;
}

.order-form, .slot-info {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-form {
    max-width: 600px;
}

.slot-info {
    max-width: 400px;
    background-color: #f9f9f9;
}

.hidden {
    display: none;
}

input[type="date"], input[type="time"], input[type="valet_type"] {
    width: 95%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

select {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.content-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.carde {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.collapsible-header {
    cursor: pointer;
    position: relative;
}

.collapsible-header::after {
    content: '\25BC';
    position: absolute;
    right: 0;
}

.collapsible-header.active::after {
    content: '\25B2';
}

.collapsible-content {
    display: none;
    margin-top: 10px;
}


.collapsible-toggle {
  background-color: #0ce8ff;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}
.collapsible-content.show {
  display: block;
}
.collapsible-content {
    display: none;
    margin-top: 10px;
}


.orders-container {
    max-width: 350px;
}

.order {
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.order-date, .order-type, .order-status {
    display: block;
}

.order-status-Accepted {
    font-weight: bold;
    color: #4CAF50;
}

.order-status-Confirmed {
    font-weight: bold;
    color: #4CAF50;
}

.order-status-Completed {
    font-weight: bold;
    color: #4CAF50;
}

.order-status-Pending {
    font-weight: bold;	
    color: #FF9800;
}

.order-status-Declined {
    font-weight: bold;	
    color: #F44336;
}

.order-status-Cancelled {
    font-weight: bold;	
    color: #F44336;
}

.order-status-Paid {
    font-weight: bold;	
    color: #0ce8ff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

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

th {
    background-color: #0ce8ff;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr[draggable="true"] {
    cursor: move;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.pagination a {
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.pagination a.active {
    background-color: #0ce8ff;
    color: white;
    border-color: #0ce8ff;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

button {
	width: 100%;
	padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #0ce8ff;
    cursor: pointer;
}

.last-order-section {
	width: 340px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px 0;
}

.last-order-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.last-order-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.last-order-section form {
    display: inline-block;
}

.last-order-section button {
    font-size: 14px;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.last-order-section button.confirm {
    background-color: #4CAF50;
}

.last-order-section button.cancel {
    background-color: #f44336;
}

.last-order-section button:hover {
    opacity: 0.8;
}

.last-order-section button i {
    margin-right: 5px;
}

#formBtn {
	margin: auto;
}

#payment-form {
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#card-element {
    width: 265px;	
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
}

#card-errors {
    color: #fa755a;
    margin-bottom: 20px;
}

.vehicle-info, .confirm-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.vehicle-info p, .confirm-info label {
    margin: 0;
    font-weight: bold;
}

#registrationNumber {
    text-transform: uppercase;
}

.btn.confirm {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn.confirm:hover {
    background-color: #45a049;
}

.cookie-consent-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-consent-container a {
    color: #0ce8ff;
    text-decoration: none;
    font-weight: bold;
}

.cookie-consent-button, .cookie-policy-button {
  background-color: #4B8B3B;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.cookie-consent-container button:hover {
    background-color: #555;
}

.auto-slideshow .slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
}

.auto-slideshow .slide {
  display: none;
}

.auto-slideshow .slide img {
  width: 600px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border: 8px solid #0ce8ff;
  background-color: #4B8B3B; 
}

/* GALLERY STYLES - FROM GALLERY.PHP */

/* ~~~ Featured ~~~ */
.featured-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.featured-container .gallery-item {
  position: relative;
  width: 400px;
  height: 400px;
  max-width: 90vw;
  max-height: 90vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.featured-container .gallery-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
}

/* ~~~ More Images ~~~ */
.other-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}
.other-container .gallery-item {
  position: relative;
  width: 200px;
  height: 200px;
  max-width: 90vw;
  max-height: 90vw;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.other-container .gallery-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
}

/* ~~~ Before & After Slideshow ~~~ */
.ba-slideshow {
  text-align: center;
  margin: 40px auto;
}
.slideshow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ba-arrow {
  font-size: 32px;
  border: none;
  color: #0ce8ff;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-arrow:hover {
  background: #ddd;
}
.ba-slide {
  display: flex;
  gap: 10px;
  width: 900px;
  height: 600px;
  max-width: 90vw;
  max-height: 90vw;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ba-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 420px;
  height: 580px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ba-label {
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
  background: #eee;
  padding: 4px 8px;
  border-radius: 4px;
}
.ba-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

/* ~~~ Lightbox (modal) ~~~ */
.modal-overlay {
  display: none; 
  position: fixed; 
  z-index: 9998;
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100%; 
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.modal-overlay.show {
  display: flex;
}
.modal-content {
  max-width: 95%;
  max-height: 95%;
  border-radius: 8px;
}
.close-button {
  position: absolute;
  top: 20px; 
  right: 35px; 
  color: #fff; 
  font-size: 30px; 
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}
.close-button:hover {
  color: #ccc;
}
.stat-note{
  display:block;
  margin-top:2px;
  font-size:12px;
  color:#777;
}

@media (max-width: 768px) {	
    .menu-toggle {
        display: block;
        background-color: transparent;
        border: none;
        color: #0ce8ff;
        font-size: 24px;
        padding: 20px;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .menu-toggle:hover {
        background-color: #444;
    }

	header ul {
		display: none;
		flex-direction: column;
		width: 100%;
		text-align: left;
		padding: 20px;
		position: absolute;
		top: 110px;
		left: 0;
		background: #333;
		overflow-y: hidden;
		max-height: 70vh;
		box-sizing: border-box;
		z-index: 9999;
	}

	  .auto-slideshow .slideshow-container {
		border-radius: 8px;		  
		max-width: 350px;
	  }
	  .auto-slideshow .slide img {
        border: 8px solid #0ce8ff; 
		max-height: 250px;	
	  }

	  .modal-overlay {
		z-index: 9998 !important;
	  }
	  
	  .featured-container .gallery-item {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		margin-bottom: 20px;
	  }
	  .featured-container .gallery-item img {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
	  }

	  .other-container .gallery-item {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		margin-bottom: 20px;
	  }
	  .other-container .gallery-item img {
		position: static !important;
		width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
	  }

	  .slideshow-container {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	  }
	  
	  #prevPairBtn {
		order: 1;
		margin: 8px auto;
	  }
	  #nextPairBtn {
		order: 3;
		margin: 8px auto;
	  }
	  
	  .ba-arrow {
		font-size: 14px !important;
		padding: 6px 12px !important;
		background-color: #333;
		color: #0ce8ff;
		border-radius: 5px;
		min-width: 50px;
		min-height: 36px;
	  }

	  .ba-slide {
		order: 2;  
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		width: auto !important;
		height: auto !important;
		margin: 5px 0 !important;
	  }

	  .ba-img {
		width: 80% !important;
		max-width: 350px;
		height: auto !important;
		margin-bottom: 15px;
	  }
	  .ba-img img {
		position: static !important;
		width: 100% !important;
		height: auto !important;
	  }

    header ul.showing {
        display: flex;
    }

    header ul li {
        padding: 10px; 
        border-bottom: 1px solid #444;
        width: 100%;
    }
	
    .logo img {
        margin-top: 6px;
        width: 100px;
        height: auto;		
    }
	
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-img {
        margin-right: 0;
    }	

    .features {
        flex-direction: column;
		margin-top: 2px;
    }

    .feature {
        margin: 5px;
    }
	
    .team {
        flex-direction: column;
        align-items: center;
    }

    .map iframe {
        height: 250px;
    }

    .team-member img {
        width: 100px; 
        height: 100px; 
    }
	
    #formL {
	    width:auto;
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
	
    #contact-form {
	    width: auto;
        background-color: #fff;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
	
    .order-form, .slot-info {
        max-width: 100%;
        margin: 10px 0;
    }

    select, input[type="date"], input[type="time"], input[type="submit"] {
        font-size: 16px;
    }

    .content-flex {
        flex-direction: column;
    }

    .carde, .orders-container {
        margin: 10px 0;
        width: auto;
    }


    .last-order-section {
	    width: auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 20px;
        margin: 20px 0;
    }
	
    table thead {
        display: none;
    }

    table, table tbody, table tr, table td {
        display: block;
    }

    table tr {
        margin-bottom: 15px;
    }

    table td {
        position: relative;
        text-align: right;
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

    table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }

    textarea {
        width: 100%;
        height: 200px;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        resize: vertical;
        margin: 10px 0;	
    }	

  .stat{ width:120px; height:120px; margin:15px 10px; }
  .donut text.primary   { font-size:20px; }
  .donut text.secondary { font-size:10px; } 
}