body {
        font-family: "Gotham SS", -apple-system, system-ui, Helvetica, Arial, sans-serif;
        margin: 10px;
        background: #f4f4f4;
      }

body {
        background-image: url(../images/listers_background.png);
      }

.outer { 
  		height: 100vh;
      }

/* Style for the cart item container */
.cart-item {
        display: flex;
        flex-direction: column; /* Stack content vertically on smaller screens */
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #f7f7f7;
      }

/* Style for the button container */
.button-container {
        display: flex;
        gap: 10px; /* Add spacing between buttons */
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
        margin-top: 10px;
      }

/* Style for buttons */
.cart-item button {
        padding: 8px 12px;
        font-size: 14px;
        border: none;
        border-radius: 4px;
      	cursor: pointer;
        background-color: #00377b;
        color: white;
        transition: background-color 0.3s ease;
      }

.cart-item button:hover {
        background-color: rgb(86, 86, 86);
      }

/* Basket icon styling */
#basket-icon img {
        width: 20px;
        margin-right: 10px;
      }

/* Center the logo in the header */
header img {
        width: 250px;
        display: block;
        margin: auto;
      }

header {
        background-color: #00377b; 
		width:auto; 
        padding: 10px 20px 10px 20px; 
        margin-bottom: 30px;
        height: auto;
      }

/* GDPR Popup styles */
    
#gdpr-popup {
        position: fixed;
        bottom: 0;
        left: 0; right: 0;
        background-color: #00377b;
        color: white;
        padding: 15px 20px;
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
        z-index: 9999;
      }

#gdpr-popup a {
      	color: white;
      }

#gdpr-popup p {
        margin: 0;
        font-size: 14px;
        max-width: 80%;
      }

#gdpr-popup button {
        background-color: #fff;
        border: none;
        padding: 8px 16px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        color:#00377b;
      }
#gdpr-popup button:hover {
        background-color: rgb(86, 86, 86);
        color: white;
      }

#basket-icon {
        background: #fff;
        padding: 10px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.1);
        font-size: 16px;
        text-align: right;
        position: sticky;
        top: 0;
        z-index: 1000;
      }

.heading {
        font-size: 50px;
        color: #00377b;
        text-align: center;
      }

.aftercare-body{
        text-align: center;
        font-size:25px;
        color: rgb(86, 86, 86);
        padding-bottom: 20px;
      }

.upload-container {
        margin: auto;
        max-width: 50%;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    
      }

.thank-you-container {
        margin: auto;
        max-width: 50%;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
    
.thank-you-inner {
        margin:auto;
        width: 50%;
        text-align: center;
      }

.checkout-container {
        margin: auto;
        max-width: 800px;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
    
.checkout-inner {
        margin:auto;
        width: 90%;
        text-align: center;
      }  

.basket-container {
        margin: auto;
        max-width: 75%;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
    
.basket-inner {
        margin:auto;
		width: 90%;
        text-align: center;
    }

.basket-inner h1 {
        margin:auto;
		width: 90%;
        text-align: center;
    }

.product-container {
      margin: auto;
      max-width: 50%;
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
     
      }

.product-image img {
        width: 100%;
        height: auto;
        border-radius: 6px;
      }

.product-details {
        margin-top: 15px;
        color: rgb(86, 86, 86);
      }

.product-title {
        font-size: 25px;
        font-weight: bold;
        margin-bottom: 5px;
        color:  #00377b;
      }

.product-price {
        font-size: 18px;
        color:   #00377b;
        margin-bottom: 10px;
        font-weight: bold;
      }

.product-description {
        font-size: 15px;
        margin-bottom: 15px;
      }

.quantity input {
        width: 60px;
        padding: 6px;
        font-size: 16px;
      }

.buttons {
        margin-top: 10px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

.add-button, .clear-button {
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }

.add-button {
        background-color:   #00377b;
        color: white;
      }

.add-button:hover  {
        background-color: rgb(86, 86, 86);
      
      }

.clear-button {
        background-color:  #00377b;
        color: white;
      }

.clear-button:hover {
        background-color: rgb(86, 86, 86);
      }

.footer {
        position: absolute;
        width: 100%;
        background-color: #00377b;
        padding: 10px;
        font-size: 12px;
        text-align: center;
        color: white;
      }

/* Basket Styles */


/* Header Styles */
header {
        text-align: center;
        margin: 20px 0;
      }

header img {
		width: 250px;
        display: block;
        margin: auto;
      }

/* Main Content Styles */
.basket-outer {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        height: 100vh;
      }

.basket-container {
        text-align: center;
        width: 90%;
      }

.basket-inner h1 {
        font-size: 24px;
       
        margin-bottom: 20px;
      }

#cart-items {
        margin: 20px 0;
      }

.cart-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #f7f7f7;
      }

.cart-item p {
        margin-bottom: 20px;
      }

/* Button Styles */
button {
		padding: 10px 15px;
        margin: 5px;
        background-color: #007bff;
		color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }

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

button:disabled {
        background-color: #ccc;
        cursor: not-allowed;
      }

add-button {
        margin-top: 20px;
      }

/* Warning Message */
#checkout-warning {
        color: red;
        display: none; /* Hidden by default */
      }

/* Footer Styles */
footer {
        text-align: center;
        margin-top: 20px;
        padding: 10px;
        background-color: #f1f1f1;
        font-size: 14px;
        color: #555;
      }

.gdpr-popup {
        display:none;
      }

/*checkout styles*/

select, input, textarea {
        width: 200px;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
        font-size: 14px;
        color: darkgray;
      }

textarea { width: 100%; min-height: 80px; }

button.add-button {
        padding: 10px 20px;
        background-color: #00377b;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
      	margin-top: 20px;
      }

button.add-button:hover { 
		background-color: #0055a5; 
      }

.error-message { 
  		color: red; font-size: 14px; margin-bottom: 10px; display: none; 
      }

@media (min-width: 768px) {
      .product-container {
        flex-direction: row;
        gap: 30px;
      }

.product-image, .product-details {
        flex: 1;
      }

.product-details {
        margin-top: 0;
      }        
    }

/* Center the form container */
#checkout-form {
  width: 50%; /* Limit the form width */
  margin: 0 auto; /* Center the form horizontally */
  padding: 20px;
  background-color: #fff; /* Add a background color */
  border-radius: 8px; /* Add rounded corners */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  display: flex;
  flex-direction: column; /* Stack inputs vertically */
  align-items: center; /* Center inputs horizontally */
}

/* Style for form inputs, textarea, and select */
#checkout-form input,
#checkout-form textarea,
#checkout-form select {
  width: 100%; /* Make inputs take up the full width of the form */
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

/* Style for the submit button */
#checkout-form button {
  width: 100%; /* Make the button take up the full width of the form */
  padding: 10px;
  background-color: #00377b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

#checkout-form button:hover {
  background-color: #0055a5;
}

/* Error message styling */
.error-message {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
  display: none; /* Hidden by default */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  #checkout-form {
    width: 90%; /* Make the form take up most of the screen width */
    box-sizing: border-box; /* Include padding and border in the width */
  }
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {

.cart-item {
    flex-direction: column; /* Stack content vertically on smaller screens */
    align-items: center;
  }

.button-container {
    justify-content: center; /*Align buttons to the left */
  }

  
.checkout-inner {
        margin:auto;
        width: 90%;
        text-align: center;
    }
}