@import url('seat_cover_fixes.css');
@import url('responsive-fixes.css');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: none;
}

.modal {
  display: block; /* Show the modal */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  display: flex; /* Added to help with centering */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2% 5%; /* Added padding to give more space */
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.modal-content {
  z-index: 100000 !important;
  position: relative !important;
  background-color: white !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  width: 90% !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333333;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: black;
  margin-bottom: 1rem;
  margin-left: 4rem;
  margin-top: 1rem;
  font-size: 30px;
  font-weight: bold;
  color: #1c2833;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff4081;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

nav {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 10;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-bar {
  background-color: #F0EEED;
  border-radius: 2rem;
  border: 1px solid black;
  padding: 0.6rem 2rem;
}

.select {
  background: transparent;
  width: 10vw;
  margin-left: 18rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f0f0f;
}

.search-bar input[type="search"] {
  background: transparent;
  width: 20vw;
  margin-left: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f0f0f;
}

nav .search-bar input[type="search"]::placeholder {
  color: #a3a2a2;

}

nav .create {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo{
  height: 3rem;
  width: 3rem;
}
.logo-text{
  display: flex;
  align-items: center;
}
.list_of_movies{
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
}
/* ===============================Banner============================= */
.banner {
  width: 100%;
  padding: 0.7rem 0;
}

.banner img {
  margin-top: 80px;
  height: 700px;
  width:  100%;
}
/* ===============================End of Banner============================= */
/* ===============================Cards============================= */

.modal {
  display: block; /* Show the modal */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  display: flex; /* Added to help with centering */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2% 5%; /* Added padding to give more space */
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.modal-content {
  z-index: 100000 !important;
  position: relative !important;
  background-color: white !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  width: 90% !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.alert-warning {
  color: #f8f8f8;
  background-color: #080808;
  border-color: #0d0d0c;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.cards-list {
  border-radius: 40px;
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 5rem;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 80px;

}

.card {
  border-radius: 40px;
  margin: 32px 32px;
  width: 300px;
  height: 400px;
  cursor: pointer;
  margin-bottom: 100px;
  transition: 0.4s;
  object-fit: cover;
}

.card .card_image {
  width: inherit;
  height: inherit;
  border-radius: 30px 30px 15px 15px;
  object-fit: cover;
}

.card .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card-text{
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 15%;
  font-size: 30px;
  font-weight: bold;
  color: #1c2833;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}


.card .card_title {

  text-align: left;
  padding-left: 18px;
  font-weight: 400;
  font-family: sans-serif;
  font-size: 20px;
  margin-top: -80px;
  height: 40px;
  padding-top: 100px;
  font-family: 'Poppins', sans-serif;
}
.small-car-card {
  width: 240px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
  margin: 20px; /* Space between cards */
  display: inline-block; /* Align cards in a row */
  text-align: center; /* Center text */
  border: 1px solid #ccc; /* Optional: Add a border */
  border-radius: 10px; /* Optional: Add rounded corners */
  padding: 10px; /* Optional: Add some padding */
}

.car-poster {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
}

.card-body .card-title{
  border-radius: 40px;
  text-align: left;
  color: #0f0f0f;
  padding-left: 10px;
  text-decoration: none;
  font-size: 20px;
  margin-top: -80px;
  margin-bottom: 40px;
  height: 40px;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.card-body .card-title1{
  border-radius: 40px;
  text-align: left;
  color: #0f0f0f;
  padding-left: 10px;
  text-decoration: none;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 40px;
  height: 40px;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
 }


.card:hover {
  transform: scale(0.99, 0.99);
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}



/* .product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 300px; 
  margin: 10px;
  max-width: 400px; 
  max-height: 500px; 
} */

/* .product-image {
  width: 100%; 
  height: 300px; 
  object-fit: cover;
} */

.product-title {
  font-size: 20px;
  margin: 10px 0;
}

.product-price {
  font-size: 18px;
  color: black; /* Bootstrap success color */
}

/* URGENT FIX: Seat Cover Price Layout */
/* .seat-covers-content .price-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 0.25rem !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
} */

/* .seat-covers-content .price-info * {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: baseline !important;
} */

/* .seat-covers-content .variant-info {
  display: inline-block !important;
  font-size: 0.75rem !important;
  color: #6366f1 !important;
  margin: 0 !important;
} */

/* .seat-covers-content .variant-info p {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
} */

/* NUCLEAR OPTION: Maximum specificity */
/* .seat-covers-content .product-card .card-content .price-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 0.25rem !important;
} */

/* .seat-covers-content .product-card .card-content .price-info .variant-info {
  display: inline-block !important;
  margin: 0 !important;
} */

/* .seat-covers-content .product-card .card-content .price-info .variant-info p {
  display: inline !important;
  margin: 0 !important;
} */

.discount {
  color: red; /* Highlight discount in red */
}

/* ===============================Footer============================= */

*, *:before, *:after {
  box-sizing: border-box;
}

.footer_logo{
  height: 50px;
  width: 50px;
}

html {
  font-size: 100%;
}

body {
  font-family: acumin-pro, system-ui, sans-serif;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #f4f4f4;
  align-items: start;
  min-height: 100vh;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #efefef;
  background-color: 		#272727;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex:  1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 400;
  font-size: 20px;
  margin-top: 100px;
  margin-left: -8px;
}
.fa-solid{
  margin-right: 10px;
}
.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
  margin-top: 100px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
	flex-flow: row wrap;
  align-items: flex-start;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
  margin-top: 0;
}

.nav__ul{
  color: #838181;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  color: #999;
}

.heart {
  color: #2f2f2f;
}

@media screen and (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .nav__item {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}


/* ===============================navbar============================= */


.navbar-content {
  display: flex;
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center items vertically */
}

.navbar-content .alert {
  margin: 0; /* Remove margin for better alignment */
}

.navbar-right {
  margin-left: auto; /* Push the Home button to the right */
}

.btn-home {
  background-color: #b8bec3; /* Bootstrap primary color */
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.magnified-view {
    height: 400px;
    width: 400px;
    position: absolute;
    overflow: hidden;
    border: 2px solid #007bff; /* Border color for the magnified view */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
    z-index: 10; /* Ensure it appears above other elements */
    pointer-events: none; /* Prevent interaction with the magnified view */
    transform: translate(-50%, -50%); /* Center the magnified view */
    background-repeat: no-repeat;
    transition: opacity 0.2s ease; /* Smooth transition */
}

.seat-cover-image {
    width: 600px; /* Set your desired width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 0.5rem; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.2s; /* Smooth transition for hover effect */
}

.seat-cover-image:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* .content-box {
  border: 1px solid #007bff; 
  border-radius: 8px; 
  padding: 20px; 
  background-color: #f9f9f9; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  margin-top: 20px; 
} */

.custom-bold-large {
  font-weight: bold; /* Makes the text bold */
  font-size: 1.25rem; /* Adjusts the font size */
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #040404;
}

.nav-link {
  color: #0f0e0e;
  margin-right: 25px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff4081;
}

/* Buttons */
button {
  background-color: #b5babf;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.address-box {
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Space inside the box */
    margin-bottom: 10px; /* Space between boxes */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;
    justify-content: space-between; /* Space between content and actions */
    align-items: center;
}

.address-content {
    flex-grow: 1; /* Allow content to take up remaining space */
}

.address-actions {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 5px; /* Space between buttons */
}

.address-actions button {
    background-color: #b5babf;
    color: #ffffff;
    border: none;
    padding: 5px 10px; /* Smaller padding for smaller buttons */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.address-actions button:hover {
    background-color: #0056b3;
}

.modal_orders {
  display: block;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog_orders {
  max-width: 500px;
  margin: 1.75rem auto;
}

.modal-content_orders {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.modal-header_orders {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title_orders {
  margin: 0;
  font-size: 1.5rem;
}

.close_orders {
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body_orders {
  padding: 10px 0;
}

.modal-footer_orders {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}

.purchase-image {
    height: 100%; /* Match the container's height */
    width: auto; /* Maintain aspect ratio */
    max-width: 20%; /* Ensure the width is less than the container */
    object-fit: cover; /* Cover the container while maintaining aspect ratio */
    margin-right: 20px; /* Space between image and text */
    flex-shrink: 0; /* Prevent shrinking */
    border-radius: 30px 30px 30px 30px;
}

.slot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.slot-item {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1 0 30%; /* Adjusts the width of each item */
}

.slot-item:hover {
    background-color: #e0e0e0;
}

.slot-item:active {
    background-color: #d0d0d0;
}

.selected-slot {
    background-color: #d0e6f7; /* Light blue background */
    border-color: #007bff; /* Blue border */
    color: #007bff; /* Blue text */
    font-weight: bold; /* Bold text */
}

.admin-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px;
}

.admin-orders-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    padding: 2.5rem;
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 200px;
}

.order-details p {
    margin: 5px 0;
    color: #555;
}

.order-actions .btn {
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-actions .btn-primary {
    background-color: #007bff;
    color: #fff;
}

.order-actions .btn-warning {
    background-color: #ffc107;
    color: #fff;
}

.order-actions .btn-success {
    background-color: #28a745;
    color: #fff;
}

.order-actions .btn:hover {
    opacity: 0.9;
}

.no-orders {
    text-align: center;
    color: #777;
    font-size: 18px;
}

/* ===============================Login============================= */

/* Immediate dark background for login/signup pages to prevent white flash */
body:has(.container-login) {
  background-color: #1a1a1a !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  /* Ensure smooth transition and no layout shift */
  transition: background-color 0.1s ease-in-out !important;
}

.container-login {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding: 0 10%;
  /* Add immediate dark background to prevent white flash */
  background-color: #1a1a1a !important;
  background-image: url('../static/SeatCoverTry.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Ensure background loads immediately */
  background-attachment: fixed;
  will-change: background-image;
  /* Add a semi-transparent overlay */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Increased overlay opacity from 0.4 to 0.6 */
    z-index: 1;
  }
  /* Ensure content stays above the overlay */
  & > * {
    position: relative;
    z-index: 2;
  }
}

.background-image-login {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../static/SeatCoverTry.png') no-repeat center center/cover;
  background-size: cover;
  filter: blur(5px) opacity(0.4); /* Decreased opacity from 0.6 to 0.4 */
  z-index: -1;
  /* Ensure immediate loading and no white flash */
  opacity: 0.4; /* Decreased opacity from 0.6 to 0.4 */
  transition: opacity 0.3s ease-in-out;
}

.content-container-login {
  color: white;
  text-align: center;
}
.content-container-login h1 {
  color: white;
  font-weight: 700;
  margin-left: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.content-container-login p {
  color: white;
  line-height: 1.6;
  max-width: 75%;
  margin: 0 auto;
  text-align: center;
}
.login-container-login {
  background: rgba(30, 30, 30, 0.35);
  border-radius: 1.25rem;
  text-align: center;
  color: white;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
  margin-left: 0;
}
.login-container-login h2 {
  margin-bottom: 1.25rem;
  color: white;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.input-field-login {
  width: 100%;
  margin: 0.75rem 0;
  border: none;
  border-radius: 6px;
  background: #2c2c2c;
  color: white;
}
.login-button-login {
  width: 100%;
  background: linear-gradient(to right, #75abfb, #3768fd);
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.75rem;
}
.login-button-login:hover {
  background: linear-gradient(to right, #416df1, #0541f4);
}
.register-link-login {
  margin-top: 1rem;
  display: block;
  color: #f55c3a;
  text-decoration: none;
}

.btn-close {
  background-color: white; /* Ensure the background is transparent */
  border: none; /* Remove any default border */
  color: white; /* Set the text color to white */
  font-size: 1rem; /* Adjust the size as needed */
  cursor: pointer; /* Change the cursor to a pointer on hover */
  outline: none; /* Remove the outline on focus */
}

.btn-close:hover {
  color: #ccc; /* Optional: Change color on hover for better UX */
}


/* ===============================Car Brand============================= */ 

/* Car Brand Page Background Fix - Explicit Name */
.container-carbrand {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Changed from center to flex-start */
  min-height: 100vh; /* Changed from height to min-height */
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
  background-image: linear-gradient(135deg, #e0e0e0, #b0b0b0);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keep background fixed during scroll */
  font-family: 'Poppins', sans-serif;
  color: #333;
  padding-bottom: 100px; /* Add bottom padding for better spacing */
}
.navbar-carbrand {
  width: 100%;
            padding: 15px 5%;
            background: rgba(30, 30, 30, 0.9);
            backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-brand-carbrand {
  font-size: 26px;
            font-weight: bold;
            color: #f0f0f0;
            text-decoration: none;
}
.search-bar-carbrand {
  display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 18px;
            border-radius: 25px;
  margin-right: 5%;
  margin-left: 35%;
}
.search-bar-carbrand input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  margin-left: 12px;
}

.search-bar-carbrand button {
  background: #0056b3;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
/* Car Brand Hero Section Fix - Explicit Name */
.hero-section-carbrand {
  text-align: center;
  margin-top: 200px; 
}
.hero-section-carbrand h1 {
  
  font-size: 42px;
            font-weight: bold;
            color: #333;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.hero-section-carbrand p {
  font-size: 20px;
  color: #666;
}


.white-text {
  color: white;
}

/* Car Brand Page Body Background Fix - Explicit Name */
body:has(.container-carbrand) {
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ===============================User Home============================= */

.container-userhome {
  
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
}

.navbar-userhome {
  width: 100%;
  padding: 15px 5%;
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand-userhome {
  font-size: 26px;
  font-weight: bold;
  color: #f0f0f0;
  text-decoration: none;
}

.search-bar-userhome {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  border-radius: 25px;
  margin-right: 5%;
  margin-left: 35%;
}

.search-bar-userhome input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  margin-left: 12px;
}

.search-bar-userhome button {
  background: #0056b3;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.hero-section-userhome {
  text-align: center;
  margin-top: 0%;
}

.hero-section-userhome h1 {
  font-size: 42px;
  font-weight: bold;
  color: #333;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-section-userhome p {
  font-size: 20px;
  color: #666;
}

.white-text {
  color: white;
}

/* ===============================My Cars============================= */

.container-mycars {
  margin-top: 70px; /* Adjust this value based on your navbar height */
  background: linear-gradient(135deg, #e0e0e0, #b0b0b0);
  min-height: 100vh; /* Ensure the container covers the full viewport height */

  flex-direction: column;
  align-items: center;

}

.cards-list-mycars {
  border-radius: 2.5rem;
  z-index: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
  padding: 3rem 2rem;
}



.card-mycars {
  background-color: #f0f0f0;
  /* border-radius: 40px; */
  margin: 32px 32px;
  width: 227px;
  height: 323px;
  cursor: pointer;
  margin-bottom: 100px;
  transition: 0.4s;
}

.card-mycars .card_image {
  width: inherit;
  height: inherit;
  border-radius: 30px 30px 15px 15px;
}

.card-mycars .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card-text-mycars{
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 15%;
  font-size: 20px;
  font-weight: bold;
  color: #1c2833;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}


.card-mycars .card_title {
  font-family: 'Poppins', sans-serif;
  color: black;
  text-align: center;
  padding-left: 0px;
  font-family: sans-serif;
  font-size: 30px;
  margin-top: -80px;
  margin-bottom: 60px;
  height: 40px;
  padding-top: 100px;
  font-weight: bold;
  color: #1c2833;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}


.small-car-card-mycars {
  background-color: #f0f0f0;
  width: 400px; /* Adjust width as needed */
  height: 400px; /* Maintain aspect ratio */
  margin: 20px; /* Space between cards */
  display: inline-block; /* Align cards in a row */
  text-align: center; /* Center text */
  border: 1px solid #ffffff; /* Optional: Add a border */
  /* border-radius: 40px; Optional: Add rounded corners */
  padding: 10px; /* Optional: Add some padding */
}

.car-poster-mycars {
  width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
}

.card-body-mycars .card-title{
  border-radius: 40px;
  text-align: left;
  color: #0f0f0f;
  padding-left: 10px;
  text-decoration: none;
  font-size: 15px;
  margin-top: -80px;
  margin-bottom: 20px;
  height: 40px;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
}

.card-body-mycars .card-title1{
  border-radius: 40px;
  text-align: left;
  color: #0f0f0f;
  padding-left: 10px;
  text-decoration: none;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 40px;
  height: 40px;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
 }


@media all and (max-width: 500px) {
  .cards-list-mycars {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}


/* ===============================My Cars============================= */

.select-car-button {
  background-color: #0056b3; /* Button background color */
  color: white; /* Text color */
  border: none; /* Remove default border */
  padding: 10px 20px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Font size */
  margin-left: 70px;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.select-car-button:hover {
  background-color: #004494; /* Darker shade on hover */
}

.selected-car-text {
  color: #28a745; /* Green color to indicate success */
  font-weight: bold; /* Make the text bold */
  font-size: 16px; /* Font size */
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Center the icon and text vertically */
  gap: 5px; /* Space between the icon and text */
}

.selected-car-text i {
  color: #28a745; /* Match the icon color with the text */
  font-size: 18px; /* Adjust icon size */
  align-items: center; 
}

.add-car-button {
  margin-top: 20px; /* Adjust this value to move the button lower */
}

.centered-text-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 100vh; /* Full viewport height to center vertically */
  text-align: center; /* Center text within the container */
}



.my-cars-card-updated {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden; /* Ensures that the image does not overflow the card */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 350px; /* Set a fixed width for the card */
  margin: 10px;
  max-height: 550px; /* Increased from 450px to 550px to accommodate additional content */
  display: flex;
  flex-direction: column;
}

.my-cars-image-updated {
  width: 100%; /* Make the image responsive */
  height: 200px; /* Reduced from 250px to 200px to give more space for content */
  object-fit: cover; /* Ensure the image covers the entire area */
}

/* Ensure card content area has proper spacing */
.my-cars-card-updated .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px; /* Ensure minimum height for content */
}

/* Status and selection controls styling */
.car-status {
  margin: 8px 0;
}

.status-available {
  color: #28a745;
  font-weight: 500;
}

.status-unavailable {
  color: #dc3545;
  font-weight: 500;
}

.unavailable-message {
  margin-top: 10px;
}

.unavailable-message p {
  margin-bottom: 8px;
  line-height: 1.4;
}

.my-cars-title-uodated {
  font-size: 20px;
  margin: 10px 0;
}


.buy-now-button {
  background-color: #0056b3; /* Button background color */
  color: white; /* Text color */
  border: none; /* Remove default border */
  padding: 10px 20px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Font size */
  margin-left: 10px;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.buy-now-button:hover {
  background-color: #004494; /* Darker shade on hover */
}


.apply-coupon-button {
  background-color: #0056b3; /* Button background color */
  color: white; /* Text color */
  border: none; /* Remove default border */
  padding: 10px 20px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Font size */
  margin-top: 20px;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.apply-coupon-button:hover {
  background-color: #004494; /* Darker shade on hover */
}

/* ================ my orders ================== */

.orders-container {
  padding: 100px 5% 40px;
}

h1 {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
  color: #222;
}

.order-card {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 20px;
  align-items: center;
  gap: 20px;
}

.order-image {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  background-color: #eaeaea;
  object-fit: cover;
}

.order-info {
  flex: 1;
}

.order-info h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #444;
}

.order-info p {
  margin: 6px 0;
  font-size: 16px;
  color: #555;
}

.status {
  padding: 6px 12px;
  border-radius: 12px;
  background-color: #e0e0e0;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

.billing-btn {
  padding: 10px 20px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.billing-btn:hover {
  background-color: #004494;
}

/* ===== ORDER STATUS PROGRESS STYLES ===== */
.order-status-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.current-status {
    margin-bottom: 20px;
}

.current-status .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-message {
    color: #6c757d;
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 0;
}

.status-progress {
    margin-top: 15px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(to right, #28a745 0%, #28a745 var(--progress-width, 0%), #e9ecef var(--progress-width, 0%), #e9ecef 100%);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 80px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 8px;
    background: #e9ecef;
    color: #6c757d;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    line-height: 1.2;
    max-width: 80px;
    word-wrap: break-word;
}

.progress-step.completed .step-icon {
    background: #28a745;
    color: white;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.progress-step.completed .step-label {
    color: #28a745;
    font-weight: 700;
}

.progress-step.current .step-icon {
    background: #007bff;
    color: white;
    border-color: #007bff;
    animation: pulse-current 2s infinite;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.progress-step.current .step-label {
    color: #007bff;
    font-weight: 700;
}

@keyframes pulse-current {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.2);
    }
}

/* Responsive adjustments for progress bar */
@media (max-width: 768px) {
    .progress-bar {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }
    
    .progress-bar::before {
        display: none;
    }
    
    .progress-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 15px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        min-width: auto;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-label {
        font-size: 14px;
        max-width: none;
        margin: 0;
    }
    
    .progress-step.completed {
        background: rgba(40, 167, 69, 0.1);
        border-left: 4px solid #28a745;
    }
    
    .progress-step.current {
        background: rgba(0, 123, 255, 0.1);
        border-left: 4px solid #007bff;
    }
}


.cards-list-carbrand {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 5rem 3.125rem 5rem;
  width: 100%;
}

.card-carbrand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem;
}

.card-carbrand {
  width: 18.75rem;
  height: 18.75rem;
  background-color: white;
  border-radius: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.05);
  position: relative;
}

.card-carbrand:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.15);
}

.brand-name-text {
  font-size: 3rem;
  color: #2c3e50;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  margin: 0;
  padding: 1.25rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
}


.cards-list-available-cars {
  border-radius: 40px;
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-top: 5rem;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 80px;

}

/* Modal Car Cards - Responsive */
.card-available-cars {
  width: 100%;
  min-width: 22rem;
  max-width: 28rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-self: center;
}

.card-available-cars:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.card-available-cars img {
  width: 100%;
  height: 18rem;
  object-fit: contain;
  object-position: center;
  padding: 0.25rem;
  background: #ffffff;
}

.card-available-cars h2 {
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
}

@media (max-width: 30rem) {
  .card-available-cars img {
    height: 15rem;
  }
  
  .card-available-cars h2 {
    font-size: 1rem;
    padding: 0.75rem;
  }
}

/* Coming Soon styles */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh; /* Adjust this value as needed */
  width: 100%;
}

.coming-soon-text {
  font-size: 5rem;
  font-weight: 900;
  color: #1c2833;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 8px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.google-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 20px;
}

.google-login-button:hover {
  background-color: #f8f8f8;
}

.google-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/* Google Login Button Styles */
.google-login-container {
    margin: 15px 0;
    width: 100%;
}

.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background-color: #fff;
    color: #3c4043;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    min-width: fit-content;
}

.google-login-button:hover {
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.30), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    background-color: #f8f9fa;
}

.google-login-button:active {
    background-color: #f1f3f4;
}

.google-logo {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.google-login-button span {
    color: #3c4043;
    font-weight: 500;
}

/* Professional No Orders State */
.no-orders-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
}

.no-orders-content {
    text-align: center;
    max-width: 500px;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.no-orders-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.no-orders-icon svg {
    opacity: 0.6;
}

.no-orders-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    margin-left: 0;
    margin-top: 0;
    text-shadow: none;
}

.no-orders-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.no-orders-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-orders {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary-orders:hover {
    background-color: #2563eb;
    color: white;
}

.btn-secondary-orders {
    background-color: transparent;
    color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary-orders:hover {
    background-color: #3b82f6;
    color: white;
}

/* Responsive design */
@media (max-width: 640px) {
    .no-orders-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-orders,
    .btn-secondary-orders {
        width: 100%;
        max-width: 200px;
    }
}

/* Additional styling for order status and billing button */
.status-badge {
    background-color: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.billing-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.billing-btn:hover {
    background-color: #2563eb;
}

/* Ensure the main container takes full width */
.container-mycars {
    width: 100%;
    min-height: 100vh;
    background-color: #f9fafb;
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.order-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-info {
    flex: 1;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.order-info p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.order-info h3 {
    margin: 0 0 1rem 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.order-info p strong {
    color: #374151;
    font-weight: 600;
    min-width: 140px;
    margin-right: 0.5rem;
    }

@media (max-width: 480px) {
    .order-card {
        width: 100%;
        padding: 1.5rem;
    }
    
    .order-image {
        width: 120px;
        height: 120px;
    }
    
    .order-info h3 {
        font-size: 1.25rem;
    }
    
    .order-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .order-card {
        flex-direction: column;
        text-align: center;
        width: 95%;
        padding: 2rem;
        min-height: auto;
    }
    
    .order-image {
        margin-right: 0;
        margin-bottom: 1.5rem;
        width: 140px;
        height: 140px;
    }
    
    .order-info {
        padding-right: 0;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .order-info p {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .order-info p strong {
        min-width: auto;
        margin-bottom: 0.25rem;
    }
    
    .billing-btn {
        min-width: 200px;
    }
}


/* Center the order list with better spacing */
.order-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 1rem 0;
}

.status-badge {
    background-color: #10b981;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.billing-btn:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.billing-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 160px;
    height: fit-content;
    align-self: center;
}

/* Admin Orders Specific Styles */
.order-actions-admin {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.order-actions-admin .billing-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
}

.order-actions-admin .billing-btn:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
}

.order-actions-admin .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 140px;
    border: none;
}

.order-actions-admin .btn-primary {
    background-color: #007bff;
    color: white;
}

.order-actions-admin .btn-primary:hover {
    background-color: #0056b3;
}

.order-actions-admin .btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.order-actions-admin .btn-warning:hover {
    background-color: #e0a800;
}

.order-actions-admin .btn-success {
    background-color: #28a745;
    color: white;
}

.order-actions-admin .btn-success:hover {
    background-color: #1e7e34;
}

.order-actions-admin .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.order-actions-admin .btn-secondary:hover {
    background-color: #545b62;
}

/* Billing details styling */
.billing-details h5 {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 5px;
}

.billing-details p {
    margin-bottom: 8px;
    color: #374151;
}

.billing-details hr {
    margin: 15px 0;
    border-color: #e5e7eb;
}

.no-coupons-message {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 10px 0;
}

.no-coupons-message i {
    display: block;
}

.coupon-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.coupon-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.coupon-header h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.coupon-description {
    color: #666;
    margin: 8px 0;
    font-size: 14px;
}

.coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.min-amount {
    color: #666;
}

.coupon-status.active {
    color: #28a745;
    font-weight: 600;
}

.coupon-status.inactive {
    color: #dc3545;
    font-weight: 600;
}

/* Coupon status badges */
.badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-success {
    background-color: #10b981;
    color: white;
}

.badge-danger {
    background-color: #ef4444;
    color: white;
}

.badge-primary {
    background-color: #3b82f6;
    color: white;
}

.badge-secondary {
    background-color: #6b7280;
    color: white;
}

/* Table row styling for non-applicable coupons */
.table-secondary {
    background-color: #f8f9fa !important;
    opacity: 0.7;
}

/* Coupon table improvements */
.table th {
    background-color: #374151;
    color: white;
    font-weight: 600;
    border: none;
}

.table td {
    vertical-align: middle;
    border-color: #e5e7eb;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9fafb;
}

.me-2 {
    margin-right: 0.5rem;
}

.coupon-item {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coupon-item:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0,123,255,0.2);
}

.coupon-item.selected {
  border-color: #28a745;
  background-color: #f8fff9;
}

.coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.coupon-header h4 {
  margin: 0;
  color: #333;
}

.savings-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 0.5rem 1rem; /* 8px 16px converted to rem */
  border-radius: 1.5625rem; /* 25px converted to rem */
  font-weight: 600;
  font-size: 0.875rem; /* 14px converted to rem */
  animation: professional-badge-glow 2.5s ease-in-out infinite alternate;
}

@keyframes professional-badge-glow {
  from {
    box-shadow: 0 0 0.3125rem rgba(40, 167, 69, 0.3); /* 5px converted to rem */
  }
  to {
    box-shadow: 0 0 0.625rem rgba(40, 167, 69, 0.5); /* 10px converted to rem - much more subtle */
  }
}

.coupon-details p {
  margin: 5px 0;
  color: #666;
}

.coupon-footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.savings-highlight {
  background: #e8f5e8;
  color: #155724;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}

.fade-out {
  animation: fade-out 0.5s ease-out forwards;
}

@keyframes fade-out {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Pulse Effect for Total Amount */
.pulse-effect {
  animation: pulse 0.5s ease-in-out 4;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    color: #28a745;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Coupon Apply Button */
.apply-coupon-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  margin-top: 30px; /* Move button further down */
  margin-bottom: 15px;
}

.apply-coupon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Savings Badge Enhancement */
.savings-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  animation: savings-badge-glow 2s ease-in-out infinite alternate;
}

@keyframes savings-badge-glow {
  from {
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
  }
  to {
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
  }
}

/* ===== ENHANCED SEAT COVER DETAILS - PROFESSIONAL LAYOUT ===== */

/* Seat Cover Details Layout Adjustments */
.seat-cover-details .col-md-6:first-child {
  padding-right: 50px; /* Increase space between image and details */
}

.seat-cover-details .col-md-6:last-child {
  padding-left: 20px; /* Adjust left padding for details section */
}

/* Product Image Positioning - Move Further Left */
/* .image-container {
  margin-left: -60px !important; 
  margin-right: 40px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  padding: 1.5rem;
  transition: transform 0.3s ease;
  max-width: 550px; 
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
} */

.seat-cover-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
  max-height: 500px; /* Increased image height */
  object-fit: cover;
}

.seat-cover-image:hover {
  transform: scale(1.02);
}

/* Professional Bill Details Section */
/* .content-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #f0f0f0;
  margin-top: 0;
  width: 100%;
  min-width: 450px; 
  position: relative; 
}

.content-box h4 {
  color: #1c2833;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.75rem;
} */

/* Professional Bill Row Styling */
.flex.d-md-flex.items-center {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 !important;
}

.flex.d-md-flex.items-center:last-of-type {
  border-bottom: 2px solid #333; /* Changed from green to dark gray */
  margin-top: 1rem !important;
  padding-top: 1rem;
  font-weight: bold;
}

/* Bill Labels - Left Side */
.flex.d-md-flex.items-center p:first-child {
  color: #6c757d !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  flex: 1;
  text-align: left;
}

/* Bill Values - Right Side */
.flex.d-md-flex.items-center p:not(:first-child) {
  margin: 0 !important;
  margin-left: 1rem !important;
  font-weight: 600 !important;
  color: #333 !important;
}

/* Original Price Styling */

/* Current Price Styling */
/* .product-price {
  font-size: 1.1rem !important;
  color: #28a745 !important;
  font-weight: bold !important;
} */

/* Total Row Special Styling */
.custom-bold-large {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #1c2833 !important;
  margin: 0 !important;
}
/* 
.flex.d-md-flex.items-center:last-of-type .product-price {
  font-size: 1.4rem !important;
  color: #000000 !important; 
  font-weight: 800 !important;
}
*/

/* HR Styling */
.content-box hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #e9ecef, #28a745, #e9ecef);
  margin: 1rem 0;
}

/* Buy Now Button Professional Styling */
.buy-now-button {
  width: 100%;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.buy-now-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(45deg, #0056b3, #004494);
}

/* Apply Coupon Button Positioning */
.btn.btn-success {
  background: linear-gradient(45deg, #28a745, #20c997);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  margin-top: 1rem;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(45deg, #20c997, #17a2b8);
}

/* Product Title Styling */
.flex.flex-col.justify-center.mt-4 h4:first-child {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 2rem !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
  /* Removed blue border-bottom line */
  padding-bottom: 0.75rem;
  display: inline-block;
  width: 100%;
}

/* Main Layout Container */
.flex.d-md-flex.justify-between.mt-4 {
  display: flex !important;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem !important;
}

/* Details Section Container */
.flex.flex-col.justify-center.mt-4 {
  flex: 1;
  margin-left: 0 !important;
  margin-top: 0 !important;
  min-width: 450px;
}

/* Responsive Design for Professional Layout */
/* @media (max-width: 768px) {
  .image-container {
    margin-left: 0 !important;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .flex.d-md-flex.justify-between.mt-4 {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .flex.flex-col.justify-center.mt-4 {
    min-width: auto;
  }
  
  .content-box {
    width: 100%;
    margin: 0;
  }
  
  .flex.flex-col.justify-center.mt-4 h4:first-child {
    font-size: 1.5rem !important;
  }
} */

@media (max-width: 480px) {
  .content-box {
    padding: 1.5rem;
  }
  
  .flex.d-md-flex.items-center p:first-child {
    font-size: 0.9rem !important;
  }
  
  /* .product-price {
    font-size: 1rem !important;
  } */
  
  /* .flex.d-md-flex.items-center:last-of-type .product-price {
    font-size: 1.2rem !important;
  } */
}

/* Remove the gradient line - Comment out this section */
/* 
.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #28a745);
  border-radius: 15px 15px 0 0;
}
*/

/* Hover Effects for Bill Rows */
.flex.d-md-flex.items-center:hover {
  background: rgba(0, 123, 255, 0.02);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: all 0.2s ease;
}

.flex.d-md-flex.items-center:last-of-type:hover {
  background: rgba(40, 167, 69, 0.05);
}

/* Bill Details Heading Styling */
.flex.flex-col.justify-center.mt-4 h4.text-2xl.font-bold.text-center {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  margin-top: 1rem !important;
  padding: 0.75rem 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: block;
}

/* Enhanced Image Container - Bigger and More Left */
/* .image-container {
  max-width: 650px !important; 
  margin-left: -100px !important; 
  margin-right: 60px !important; 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: #fff;
  padding: 15px;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

/* Enhanced Seat Cover Image - Bigger */
.seat-cover-image {
  width: 100%;
  height: auto;
  max-height: 600px !important; /* Increased from 500px */
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.seat-cover-image:hover {
  transform: scale(1.02);
}

/* Perfect Alignment for Product Name and Bill Details */
.flex.flex-col.justify-center.mt-4 {
  flex: 1;
  margin-left: 0 !important;
  margin-top: 0 !important;
  min-width: 500px; /* Increased from 450px for better proportion */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align all content */
}

/* Product Name Styling - Perfectly Aligned Above Bill Details */
.flex.flex-col.justify-center.mt-4 h4:first-child {
  color: #1c2833 !important;
  font-weight: 700 !important;
}
  .flex.d-md-flex.items-center {
    padding: 0.5rem 1rem; /* Adjusted for mobile */
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .flex.d-md-flex.items-center:last-of-type {
    padding: 1rem; /* Adjusted for mobile */
  }
  
  .flex.d-md-flex.items-center p:first-child {
    font-size: 0.9rem !important;
    margin-right: 0 !important;
  }
  
  /* .product-price {
    font-size: 1rem !important;
    margin-left: 0 !important;
  font-size: 2.2rem !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
  padding-bottom: 0.75rem;
  width: 100%;
  max-width: 500px; 
} */

/* Bill Details Card - Perfect Alignment */
/* .content-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto; 
} */

/* Bill Details Heading Styling - Perfectly Centered */
.flex.flex-col.justify-center.mt-4 h4.text-2xl.font-bold.text-center {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important; /* Slightly larger */
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  margin-top: 0 !important; /* Remove top margin for better alignment */
  padding: 1rem 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  display: block;
}

/* Main Layout Container - Better Spacing */
.flex.d-md-flex.justify-between.mt-4 {
  display: flex !important;
  gap: 4rem; /* Increased gap for better spacing */
  align-items: flex-start;
  margin-top: 2rem !important;
  justify-content: space-between;
}

/* Enhanced Bill Row Styling */
.flex.d-md-flex.items-center {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: rgba(248, 249, 250, 0.5);
}

.flex.d-md-flex.items-center:last-of-type {
  background: rgba(248, 249, 250, 0.8);
  border: 2px solid #e9ecef;
  font-weight: 700;
  margin-top: 1rem;
  padding: 1rem;
}

/* Responsive Design Updates */
/* @media (max-width: 768px) {
  .image-container {
    margin-left: 0 !important;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .flex.d-md-flex.justify-between.mt-4 {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .flex.flex-col.justify-center.mt-4 {
    min-width: auto;
    width: 100%;
    max-width: 500px;
  }
  
  .content-box {
    max-width: 100%;
    margin: 0;
  }
  
  .flex.flex-col.justify-center.mt-4 h4:first-child {
    font-size: 1.8rem !important;
    max-width: 100%;
  }
} */

@media (max-width: 480px) {
  .content-box {
    padding: 1.5rem;
    max-width: 100%;
  }
  
  .flex.d-md-flex.items-center {
    padding: 0.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .flex.d-md-flex.items-center p:first-child {
    font-size: 0.9rem !important;
  }
  
  .product-price {
    font-size: 1rem !important;
    margin-left: 0 !important;
  }
  
  .flex.d-md-flex.items-center:last-of-type .product-price {
    font-size: 1.3rem !important;
  }
}

/* Remove the gradient line - Comment out this section */
/* 
.content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #28a745);
  border-radius: 15px 15px 0 0;
}
*/

/* Hover Effects for Bill Rows */
.flex.d-md-flex.items-center:hover {
  background: rgba(0, 123, 255, 0.02);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: all 0.2s ease;
}

.flex.d-md-flex.items-center:last-of-type:hover {
  background: rgba(40, 167, 69, 0.05);
}

/* Bill Details Heading Styling */
.flex.flex-col.justify-center.mt-4 h4.text-2xl.font-bold.text-center {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  margin-top: 1rem !important;
  padding: 0.75rem 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: block;
}

/* Enhanced Image Container - Bigger and More Left */
/* .image-container {
  max-width: 650px !important; 
  margin-left: -100px !important; 
  margin-right: 60px !important; 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: #fff;
  padding: 15px;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

/* Enhanced Seat Cover Image - Bigger */
.seat-cover-image {
  width: 100%;
  height: auto;
  max-height: 600px !important; /* Increased from 500px */
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.seat-cover-image:hover {
  transform: scale(1.02);
}

/* Perfect Alignment for Product Name and Bill Details */
.flex.flex-col.justify-center.mt-4 {
  flex: 1;
  margin-left: 0 !important;
  margin-top: 0 !important;
  min-width: 500px; /* Increased from 450px for better proportion */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align all content */
}

/* Product Name Styling - Perfectly Aligned Above Bill Details */
.flex.flex-col.justify-center.mt-4 h4:first-child {
  color: #1c2833 !important;
  font-weight: 700 !important;
}
  .flex.d-md-flex.items-center {
    padding: 0.5rem 1rem; /* Adjusted for mobile */
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .flex.d-md-flex.items-center:last-of-type {
    padding: 1rem; /* Adjusted for mobile */
  }
  
  .flex.d-md-flex.items-center p:first-child {
    font-size: 0.9rem !important;
    margin-right: 0 !important;
  }
  
  /* .product-price {
    font-size: 1rem !important;
    margin-left: 0 !important;
  font-size: 2.2rem !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
  padding-bottom: 0.75rem;
  width: 100%;
  max-width: 500px; 
} */

/* Bill Details Card - Perfect Alignment */
/* .content-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto; 
} */

/* Bill Details Heading Styling - Perfectly Centered */
.flex.flex-col.justify-center.mt-4 h4.text-2xl.font-bold.text-center {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important; /* Slightly larger */
  text-align: center !important;
  margin-bottom: 1.5rem !important;
  margin-top: 0 !important; /* Remove top margin for better alignment */
  padding: 1rem 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  display: block;
}

/* Main Layout Container - Better Spacing */
.flex.d-md-flex.justify-between.mt-4 {
  display: flex !important;
  gap: 4rem; /* Increased gap for better spacing */
  align-items: flex-start;
  margin-top: 2rem !important;
  justify-content: space-between;
}

/* Enhanced Bill Row Styling */
.flex.d-md-flex.items-center {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 10px;
  transition: all 0.2s ease;
  background: rgba(248, 249, 250, 0.5);
}

.flex.d-md-flex.items-center:last-of-type {
  background: rgba(248, 249, 250, 0.8);
  border: 2px solid #e9ecef;
  font-weight: 700;
  margin-top: 1rem;
  padding: 1rem;
}

/* Responsive Design Updates */
/* @media (max-width: 768px) {
  .image-container {
    margin-left: 0 !important;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .flex.d-md-flex.justify-between.mt-4 {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  
  .flex.flex-col.justify-center.mt-4 {
    min-width: auto !important;
    width: 100%;
    max-width: 500px;
  }
  
  .content-box {
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0;
    padding: 1.5rem;
  }
}

/* SEAT COVER DETAILS PAGE - FINAL COMPREHENSIVE FIX */
/* This section overrides all previous problematic styles with clean, working CSS */

/* Main container with proper navbar clearance */
.seat-cover-details-container {
  padding-top: 8rem !important;
  min-height: 100vh;
  background: #f8f9fa;
}

/* Main layout container - centered and properly spaced */
.flex.d-md-flex.justify-between.mt-4 {
  display: flex !important;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1rem !important;
  justify-content: flex-start;
  max-width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0;
}

/* Image container - fixed positioning without negative margins */
/* .image-container {
  max-width: 600px !important;
  margin-left: 0 !important;
  margin-right: 2rem !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: #fff;
  padding: 15px;
  flex-shrink: 0;
  position: relative !important; 
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} */

/* Seat cover image styling */
.seat-cover-image {
  width: 100% !important;
  height: auto !important;
  max-height: 550px !important;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: crosshair !important; /* Show crosshair cursor for magnification */
}

.seat-cover-image:hover {
  transform: scale(1.02);
}

/* Magnifying glass styles */
.magnifying-glass {
  position: absolute !important;
  width: clamp(20rem, 40vw, 30rem) !important; /* Responsive: 20rem to 30rem based on viewport */
  height: clamp(20rem, 40vw, 30rem) !important; /* Responsive: 20rem to 30rem based on viewport */
  border: clamp(0.125rem, 0.3vw, 0.25rem) solid #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 clamp(0.5rem, 2vw, 2rem) clamp(1rem, 4vw, 2rem) rgba(0, 0, 0, 0.3) !important;
  background-repeat: no-repeat !important;
  /* Removed background-size: cover to allow JavaScript control for proper magnification */
  pointer-events: none !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  transform: scale(0.8) !important;
  transition: all 0.2s ease !important;
}

.magnifying-glass.active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Right column container - product name and bill details */
.flex.flex-col.justify-center.mt-4 {
  flex: 1 !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  min-width: 500px;
  max-width: 600px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Product name container - NO WHITE BACKGROUND */
.product-name-container {
  width: 100% !important;
  max-width: 600px !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
}

.product-name-container h4 {
  color: #1c2833 !important;
  font-weight: 700 !important;
  font-size: 2.2rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important; /* Remove white background */
  border: none !important;
  box-shadow: none !important;
}

/* Bill details card */
/* .content-box {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 2rem !important;
    padding: 1.5rem !important;
    max-width: 100% !important;
    min-width: auto !important;
  } */
  
  .flex.d-md-flex.items-center {
    padding: 0.5rem 1rem !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }
  
  .flex.d-md-flex.items-center:last-of-type {
    padding: 1rem !important;
  }
  
  .flex.flex-col.justify-center.mt-4 h4:first-child {
    font-size: 1.6rem !important;
    padding: 0.75rem !important;
  }


/* === CRITICAL LAYOUT FIXES FOR SEAT COVER DETAILS PAGE === */

/* Fix 1: Image Container - Prevent truncation and navbar overlap */
.seat-cover-details-container {
  padding-top: 8rem !important;
  margin: 0 auto !important;
  max-width: 1400px !important;
}

/* .image-container {
  max-width: 600px !important;
  margin-left: 2rem !important;
  margin-right: 1rem !important;
  margin-top: 0 !important;
  position: relative !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 1rem !important;
  flex-shrink: 0 !important;
} */

/* Fix 2: Bill Details Container - Reduce width */
.flex.flex-col.justify-center.mt-4 {
  max-width: 380px !important;
  min-width: 350px !important;
  width: 100% !important;
  margin-right: 2rem !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  padding: 1.5rem !important;
  flex-shrink: 0 !important;
}

/* Fix 3: Modal Z-Index - Ensure it appears on top */
.modal {
  display: block; /* Show the modal */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  display: flex; /* Added to help with centering */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2% 5%; /* Added padding to give more space */
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.modal-content {
  z-index: 100000 !important;
  position: relative !important;
  background-color: white !important;
  border-radius: 12px !important;
  padding: 2rem !important;
  width: 90% !important;
  overflow-y: auto !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.modal.show {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Layout Container - Proper spacing */
.flex.d-md-flex.justify-between.mt-4 {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 2rem !important;
  padding: 0 !important;
  margin-top: 2rem !important;
}

/* Product Name - Remove white background */
.product-name-container {
  background: none !important;
  background-color: transparent !important;
  padding: 0 !important;
}

.product-name-container h4 {
  background: none !important;
  background-color: transparent !important;
  color: #2c3e50 !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin: 0 0 1rem 0 !important;
  padding: 0 !important;
}

/* Bill Details Heading - Proper alignment */
.flex.flex-col.justify-center.mt-4 h4:first-child {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: white !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  padding: 0.75rem !important;
  border-radius: 8px !important;
  text-align: center !important;
  margin: 0 0 1rem 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .flex.d-md-flex.justify-between.mt-4 {
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 0 !important; /* Remove side padding to eliminate white spaces */
  }
  
  .flex.flex-col.justify-center.mt-4 {
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0 !important; /* Remove side margin to eliminate white spaces */
    padding: 0 !important;
  }
  
  .seat-cover-details-container {
    padding-top: 6rem !important;
  }

  /* Ensure image container takes full width without side spacing */
  .seat-cover-details-container .image-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .seat-cover-details-container .seat-cover-image {
    width: 100% !important;
    height: auto !important;
  }
}

/* @media (max-width: 480px) {
  .seat-cover-details-container {
    padding-top: 5rem !important;
  }
  
  .flex.flex-col.justify-center.mt-4 {
    padding: 1rem !important;
  }
  
  .flex.flex-col.justify-center.mt-4 h4:first-child {
    font-size: 1.3rem !important;
  }
} */



/* Car Brand Modal Responsive Styles - Override base modal */
.modal-content.car-brand-modal-content {
  width: 95vw !important;
  max-width: 95vw !important;
  padding: 3rem !important;
  margin: 2.5vh auto !important;
  max-height: 95vh !important;
  overflow-y: auto !important;
  border-radius: 1rem !important;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Modal Header with Search - Better spacing and layout */
.modal-header-search {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 1rem 0 2rem 0;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
  gap: 2rem;
}

.modal-header-search .close {
  font-size: 2rem !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  line-height: 1 !important;
  order: 3 !important;
  margin-left: auto !important;
}

.modal-header-search .close:hover {
  color: #374151 !important;
}

.modal-header-search h2 {
  margin: 0;
  flex: 1;
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: none;
  order: 1;
  padding-top: 0.5rem;
}

.modal-search-bar {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid #e5e7eb;
  min-width: 20rem;
  transition: all 0.3s ease;
  order: 2;
  height: 3rem;
}

.modal-search-bar:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.125rem rgba(59, 130, 246, 0.1);
}

.modal-search-bar i {
  color: #6b7280;
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.modal-search-bar input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.875rem;
  color: #374151;
}

.modal-search-bar input::placeholder {
  color: #9ca3af;
}

.no-cars-found {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
  font-style: italic;
}

.no-cars-found p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 48rem) {
  .modal-header-search {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .modal-search-bar {
    min-width: auto;
    width: 100%;
    order: 2;
  }
  
  .modal-header-search .close {
    order: 1 !important;
    align-self: flex-end !important;
  }
  
  .modal-header-search h2 {
    order: 3;
    text-align: center;
  }
  
  .modal-content.car-brand-modal-content {
    width: 98vw !important;
    padding: 2rem !important;
    margin: 1vh auto !important;
  }
}

@media (min-width: 48rem) and (max-width: 64rem) {
  .modal-content.car-brand-modal-content {
    width: 92vw !important;
    max-width: 92vw !important;
  }
}

@media (min-width: 64rem) and (max-width: 80rem) {
  .modal-content.car-brand-modal-content {
    width: 90vw !important;
    max-width: 90vw !important;
  }
}

@media (min-width: 80rem) {
  .modal-content.car-brand-modal-content {
    width: 88vw !important;
    max-width: 88vw !important;
  }
}

/* Responsive grid for car selection cards */
.cards-list-available-cars {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)) !important;
  gap: 2.5rem !important;
  margin-top: 0 !important;
  padding: 2rem !important;
  justify-content: center !important;
  align-items: start !important;
}

@media (max-width: 48rem) {
  .cards-list-available-cars {
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)) !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
  }
  
  .card-available-cars {
    min-width: 18rem;
    max-width: none;
  }
  
  .card-available-cars img {
    height: 16rem;
  }
  
  .card-available-cars h2 {
    height: 3rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 30rem) {
  .cards-list-available-cars {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)) !important;
    gap: 1rem !important;
    padding: 1rem !important;
  }
  
  .card-available-cars {
    min-width: 16rem;
    max-width: none;
  }
  
  .card-available-cars img {
    height: 14rem;
  }
  
  .card-available-cars h2 {
    font-size: 1rem;
    height: 2.5rem;
    padding: 0.5rem 1rem;
  }
}

/* Warning Modal Styles - Professional Design */
.warning-modal {
  z-index: 100000 !important;
}

.warning-modal-content {
  width: 90% !important;
  max-width: 35rem !important;
  padding: 0 !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
  background: #ffffff !important;
}

.warning-modal-header {
  padding: 1rem 1.5rem 0 0;
  display: flex;
  justify-content: flex-end;
  background: #ffffff;
}

.warning-close {
  font-size: 1.5rem !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.warning-close:hover {
  background: #f3f4f6 !important;
  color: #374151 !important;
}

.warning-modal-body {
  padding: 0 2rem 2.5rem 2rem;
  text-align: center;
}

.warning-icon {
  margin-bottom: 1.5rem;
}

.warning-icon i {
  font-size: 4rem;
  color: #f59e0b;
  filter: drop-shadow(0 0.25rem 0.5rem rgba(245, 158, 11, 0.3));
}

.warning-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  font-family: 'Poppins', sans-serif;
}

.warning-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-family: 'Poppins', sans-serif;
}

.warning-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.warning-btn {
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  min-width: 9rem !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-secondary.warning-btn {
  background: #f3f4f6 !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
}

.btn-secondary.warning-btn:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

.btn-primary.warning-btn {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border: 2px solid #3b82f6 !important;
}

.btn-primary.warning-btn:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.75rem rgba(59, 130, 246, 0.3) !important;
}

/* Responsive styles for warning modal */
@media (max-width: 30rem) {
  .warning-modal-content {
    width: 95% !important;
    max-width: none !important;
  }
  
  .warning-modal-body {
    padding: 0 1.5rem 2rem 1.5rem;
  }
  
  .warning-icon i {
    font-size: 3rem;
  }
  
  .warning-title {
    font-size: 1.25rem;
  }
  
  .warning-subtitle {
    font-size: 0.875rem;
  }
  
  .warning-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .warning-btn {
    width: 100% !important;
    max-width: 15rem !important;
  }
}

/* Remove dropdown caret/arrow for User dropdown */
.dropdown-toggle::after {
  display: none !important;
}

.dropdown-toggle.white-text::after {
  display: none !important;
}

/* Professional My Cars Card Styling */
.card-mycars.small-car-card-mycars {
  justify-self: center;
  margin: 0;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 20rem;
  height: 26rem;
  padding: 0;
}

.card-mycars.small-car-card-mycars:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
  border-color: #d1d5db;
}

.car-poster-mycars {
  width: 100%;
  height: 14rem;
  object-fit: contain;
  padding: 1rem;
  background: #ffffff;
}

.card-mycars .card_title {
  font-family: 'Poppins', sans-serif;
  color: #1f2937;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  padding: 1rem 0 0.75rem 0;
  height: auto;
  text-shadow: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
  padding: 0 0.5rem;
}

.status-available {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
}

.status-available i {
  color: #059669;
  margin-right: 0.5rem;
}

.status-unavailable {
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
}

.status-unavailable i {
  color: #dc2626;
  margin-right: 0.5rem;
}

.select-car-button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.select-car-button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.selected-car-text {
  color: #059669;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0.5rem 0;
  display: inline-flex;
  align-items: center;
}

.selected-car-text i {
  margin-right: 0.5rem;
}

.unavailable-message {
  text-align: center;
  padding: 0 1rem;
}

.unavailable-message p {
  color: #6b7280;
  font-size: 0.8rem;
  margin: 0.5rem 0;
}

.unavailable-message .btn {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

.delete-car-button {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  margin: 0;
}

.delete-car-button:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.delete-car-button i {
  margin-right: 0.5rem;
}

.card-content-mycars {
  padding: 0 1rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.selection-section {
  text-align: center;
}

.delete-section {
  text-align: center;
  margin-top: auto;
  padding-top: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 30rem) {
  .card-mycars.small-car-card-mycars {
    width: 20rem;
  }
  
  .car-poster-mycars {
    height: 14rem;
  }
  
  .card-content-mycars {
    padding: 0.75rem 1rem 1rem 1rem;
  }
}

/* Delete Modal Styles */
.delete-modal {
  z-index: 100000 !important;
}

.delete-modal-content {
  width: 90% !important;
  max-width: 30rem !important;
  padding: 0 !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3) !important;
  background: #ffffff !important;
}

.delete-modal-header {
  padding: 1rem 1.5rem 0 0;
  display: flex;
  justify-content: flex-end;
  background: #ffffff;
}

.delete-close {
  font-size: 1.5rem !important;
  color: #6b7280 !important;
  cursor: pointer !important;
  padding: 0.5rem !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.delete-close:hover {
  background: #f3f4f6 !important;
  color: #374151 !important;
}

.delete-modal-body {
  padding: 0 2rem 2.5rem 2rem;
  text-align: center;
}

.delete-icon {
  margin-bottom: 1.5rem;
}

.delete-icon i {
  font-size: 3.5rem;
  color: #ef4444;
  filter: drop-shadow(0 0.25rem 0.5rem rgba(239, 68, 68, 0.3));
}

.delete-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1rem 0;
  font-family: 'Poppins', sans-serif;
}

.delete-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-family: 'Poppins', sans-serif;
}

.delete-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.delete-btn {
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-family: 'Poppins', sans-serif !important;
  min-width: 8rem !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-secondary.delete-btn {
  background: #f3f4f6 !important;
  color: #374151 !important;
  border: 2px solid #e5e7eb !important;
}

.btn-secondary.delete-btn:hover {
  background: #e5e7eb !important;
  border-color: #d1d5db !important;
}

.btn-danger.delete-btn {
  background: #ef4444 !important;
  color: #ffffff !important;
  border: 2px solid #ef4444 !important;
}

.btn-danger.delete-btn:hover {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 0.25rem 0.75rem rgba(239, 68, 68, 0.3) !important;
}

/* Responsive grid for My Cars - keep original card sizes */
@media (max-width: 48rem) {
  .cards-list-mycars {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
}

@media (max-width: 30rem) {
  .cards-list-mycars {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
  }
  
  .delete-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .delete-btn {
    width: 100% !important;
    max-width: 12rem !important;
  }
}
    