*
{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* Ensure body takes full height */
html,
body {
  height: 100%;
  margin: 0;
}

/* Flexbox layout for body */
body {
  display: flex;
  flex-direction: column;
}

/* Main content area */
.container {
  flex: 1; /* Allow the container to grow and fill space */
}

.container-fluid {
  padding: 0; /* Remove default padding */
}

/* Improve navbar styles */
.navbar {
  background-color: transparent;/* Light background for navbar */
  padding: 0rem 0rem; /* Reduced padding */
  z-index: 1000; /* Ensure navbar is above other elements */
  width: 100%; /* Full width */
  position: fixed; /* Fix position to prevent content overlap */
  top: 0; /* Stick to the top */
  margin-top: 1.5rem;
}
.navbar-container
{
  background-color: #ffffffd7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  border-radius: 50px;
  backdrop-filter: blur(15px);
}
.nav-link {
  color: #000; /* Darker text color */
  font-weight: 500;
}

.nav-link:hover {
  color: #0056b3; /* Change color on hover */
}
/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.756), rgba(0, 0, 0, 0.751)),
    url("../images/lptp-bg_hero.jpg")
      center/cover;
  min-height: 60vh;
  color: white; /* Account for fixed navbar */
}
/* Add styles for improved button aesthetics */
.btn {
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
  background-color: #0056b3; /* Darker shade for hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Footer styles */
.footer-wrapper {
  /* Allow for flexbox layout */
  color: #fff !important;
  padding-top: 2rem;
}

.footer-wrapper a {
  color: #ffffff; /* White links */
}

.footer-wrapper a:hover {
  color: #ffc107; /* Yellow on hover */
}
.custom-grid-container {
  margin-top: 20px;
}

.products_dataTables_paginate {
  margin-top: 20px; /* Adjust as needed */
  display: flex;
  justify-content: center; /* Center the pagination */
}

.products_dataTables_paginate .pagination {
  margin-top: 10px; /* Add some space between the table and pagination */
}

.products_dataTables_paginate {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Adjust as needed */
}
.products_dataTables_paginate .paginate_button {
  padding: 5px 10px;
  margin: 0 5px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
}
.products_dataTables_paginate .paginate_button.current {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative; /* Position relative for absolute positioning of the buttons */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.card-hover:hover .action-buttons {
  display: flex !important;
}

.card-hover .action-buttons {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.card-hover:hover .action-buttons {
  opacity: 1;
  visibility: visible;
}

#products_card-container .card {
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#products_card-container .card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.badge {
  font-weight: 500;
  display: inline-block; /* Ensure the badge is displayed inline */
  margin-top: 5px; /* Add some spacing if needed */
}

/* Add view toggle button styles */
.view-toggle-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-toggle-btn.active {
  background-color: #435ebe;
  color: #fff;
  border-color: #435ebe;
}

.view-button {
  position: absolute; /* Position the button absolutely */
  bottom: 10px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  display: none; /* Initially hidden */
}

.card:hover .view-button {
  display: block; /* Show the button on hover */
}

.action-buttons {
  position: absolute; /* Position the buttons absolutely */
  bottom: 10px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  display: flex; /* Use flexbox for button alignment */
  gap: 5px; /* Space between buttons */
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Initially hidden */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
}

.card-hover:hover .action-buttons {
  opacity: 1; /* Show buttons on hover */
  visibility: visible; /* Show buttons on hover */
}

#cart-icon {
  position: relative; /* Position relative for badge positioning */
}

#cart-count {
  position: absolute;
  top: -5px; /* Adjust as needed */
  right: -10px; /* Adjust as needed */
  font-size: 0.75rem; /* Smaller font size for the badge */
}

.cart-item {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #ddd; /* Add border */
  border-radius: 8px; /* Rounded corners */
}

.cart-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

.card-title a {
  color: #007bff; /* Bootstrap primary color */
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
}

.card-body {
  padding: 1.5rem; /* Add padding for better spacing */
}

.btn-danger {
  display: flex; /* Align icon and text */
  align-items: center;
}

.btn-danger i {
  margin-right: 5px; /* Space between icon and text */
}

.input-group {
  width: 200px; /* Set a fixed width for the input group */
}

.btn-success {
  width: 100%; /* Full width for the confirm button */
}

/* Add any additional styles if necessary */

@media (min-width: 1281px) {
  .offcanvas.offcanvas-end {
    width: 50vw !important;
  }
}

.section-social {
  border-bottom: 1px solid #ffffff23;
}
a
{
  text-decoration: none;
}