@import url(//fonts.googleapis.com/css?family=Luckiest+Guy);

body {
    margin:0;
    padding:0;
    font-family: "Luckiest Guy", serif;
    background-color: #000000;
    color:#ffffff;
    width: 100vw;
    height: 100vh;
    font-size: larger;
}

h1, h2, h3, h4, h5 , h6 {
    font-family: 'Luckiest Guy', sans-serif; font-weight:normal;
}

a {
    text-decoration:none;
    color:#ffffff;
}

a:hover {
    color:#77b6e2;
}

a.button, input[type="submit"] {
    color:#fff;
    background:#5993bb;
    border-radius:4px;
    padding:10px 20px;
    font-size:14px;
    border:0;
}

a.button.light {
    color:#666;
    background:#ededed;
}

.text-left {
    text-align:left;
}

.text-right {
    text-align:right;
}

:root {
  --sidebar-bg: #1a1a1a;
  --primary: #e63946;
  --accent: #a8dadc;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.3rem;
}

table {
    width:100%;
    border-spacing:0;
    border-collapse: collapse;
}

table th, table td {
    text-align:left;
    font-size:14px;
    padding:10px;
    margin:0;
}

tbody tr:nth-child(odd) {
    background:#050A30;
}

tbody tr.subtotal {
    background:#ccc;
}

thead th, tbody tr.total {
    background:#5993bb;
    color:#fff;
    font-weight:bold;
}

table.cart {
    margin-bottom:40px;
}

table.cart img {
    width:180px;
}

tbody td.num {
    text-align:right;
    
}

td input[type="submit"] {
    font-size:12px;
    padding:4px 10px;
}

form p label, form p input {
    float:left;
    clear:both;
}

form p label {
    font-size:14px;
    padding-bottom:4px;
}

form p input {
    width:300px;
    font-size:13px;
    margin-bottom:10px;
    padding:10px 12px;
    border:0;
    background:#efefef;
    color:#666;
    border-radius:4px;
}

ul.errorlist {
   float:left;
   color:#ff0000;
   clear:both;
   font-size:13px;
   margin:0 0 0 10px;
   padding:10px 0;
}
#mainheader{
  text-align: center;
  font-size: small;
}

#header {
    padding:0 26px;
    font-size:18px;
    overflow:auto;
}

.cart i {
    color: #a259ff;
    text-shadow: 0 0 5px rgba(255, 77, 79, 0.6);
  }
  .cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: red;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
}

  
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .cart i.animate {
    animation: pulse 1.5s infinite;
  }
  
#header .logo {
    font-family: "Luckiest Guy", sans-serif;
    float:left;
    color:#ffffff;
    font-size:35px;
    font-weight:bold;
    margin-right:10%;
}

#subheader {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 8px 35px;
  background-color: #000000;
  position: relative;
  z-index: 10;
}

#subheader .cart,
#subheader .account-menu {
  font-size: larger;
  position: relative;
}

.account-menu {
  cursor: pointer;
  margin-right: 5px;
}

.account-menu:hover .dropdown-menu {
  display: block;
}

.account-menu .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  color: white;
  background: #000000;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-radius: 0.25rem;
  min-width: 150px;
  z-index: 9999;
  padding: 0;
  margin-top: 0.5rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: #ffffff;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
    font-size: larger;
}


#content {
    padding:0 26px;
    overflow:hidden;
}

 .categories-section {
  text-align: center;
  padding: 2rem;
}

.categories-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card {
  position: relative;
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.03);
}


/* Remove all text-inside-image issues by placing name outside */
.category-name {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Luckiest Guy", sans-serif;
}

.category-name:hover {
  text-decoration: underline;
}


/* Centering the heading */
.products-section h2 {
    text-align: center; /* Centers the text horizontally */
    margin-bottom: 20px; /* Optional: Adds some space below the heading */
    font-size: 32px; /* Adjust font size if needed */
    color: white; /* Ensures the text color matches the theme */
    font-family:"Luckiest Guy", sans-serif;
  }
  
  /* Product Cards */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; /* Centers the products horizontally */
    margin-top: 20px;
    margin-bottom: 26px;
    padding: 0 10px; /* Optional: Adds some padding around the grid */
  }
  
  .product-card {
    background: #1e1e1e;
    border-radius: 16px;
    padding: 25px;
    width: 230px;
    text-align: center;
    transition: 0.3s;
    box-sizing: border-box;
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .product-card h3 {
    margin: 22px 0 17px;
    font-size: 28px;
    color: white;
  }
  
  .product-card p {
    color: #ccc;
    font-size: 24px;
  }
  
  .product-card a {
    text-decoration: none;
    color: inherit;
  }
  
  .product-card:hover {
    background-color: #2a2a2a;
  }
  .see-all-link {
    margin-top: 1rem;
    text-align: right;
  }
  
  .see-all-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
  }
  
  .see-all-link a:hover {
    color: #0056b3;
  }
  
  
  /* Media Queries for Responsiveness */
  
  /* Medium Screens (Tablets and below) */
  @media (max-width: 768px) {
    .product-grid {
      justify-content: center; /* Keep the products centered */
    }
  
    .product-card {
      width: 200px; /* Adjust card width for medium screens */
    }
  
    .product-card h3 {
      font-size: 22px; /* Adjust font size */
    }
  
    .product-card p {
      font-size: 20px; /* Adjust price font size */
    }
  }
  
  /* Small Screens (Phones and below) */
  @media (max-width: 480px) {
    .product-card {
      width: calc(33.33% - 20px); /* Ensure 3 items per row with gaps accounted */
      padding: 15px; /* Reduce padding for smaller screens */
    }
  
    /* Ensure the grid can display at least 3 items per row */
    .product-grid {
      gap: 10px; /* Reduce gap between items */
      justify-content: space-between; /* Spread out cards so 3 fit properly */
    }
  
    .product-card h3 {
      font-size: 18px; /* Adjust title font size */
    }
  
    .product-card p {
      font-size: 16px; /* Adjust price font size */
    }
  }

.product-detail {
    text-align:justify;
}

.product-detail .price {
    color:#ffffff;
    font-size:28px;
    font-weight:bold;
}

.product-detail img {
    width:40%;
    border-radius: 16px;
    float:left;
    padding:0 20px 20px 0;
}

.product-detail h1 {
    margin-bottom:0;
}

.product-detail h2 {
    margin-top:10px;
}

.order-form {
    float:left;
}

.order-info {
    float:right;
    width:300px;
    background:#3E160C;
    padding:10px 20px;
    color:#ffffff;
    border-bottom:4px solid #5993bb;
    font-size: larger;
}

.order-info h3 {
    color:#5993bb;
}

.order-info ul li {
    margin:0;
    padding:0;
    font-size:14px;
}

.order-info p {
    font-weight:bold;
    float:right;
}

.order-info span {
    float:right;
}

.neg {
    color:#dc1616;
}

.recommendations-wrapper {
  padding: 1rem;
  background: #000000;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.recommendations-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.recommendations-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.recommendations-scroll::-webkit-scrollbar {
  height: 8px;
}

.recommendations-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.recommendation-card {
  flex: 0 0 auto;
  width: 180px;
  scroll-snap-align: start;
  background: #000000;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-5px);
}

.recommendation-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 500;
  margin: 0.5rem 0 0.25rem;
  color: #ffffff;
}

.product-name a {
  text-decoration: none;
  color: inherit;
}

.product-name a:hover {
  color: #007bff;
}

.product-price {
  color: #28a745;
  font-weight: 600;
  font-size: 0.95rem;
}


form div.field {
    font-size:13px;
    color:#666;
    width:300px;
    height:22px;
    margin-bottom:10px;
    padding:6px 12px;
    border:0;
    background:#000000;
    color:#666;
    border-radius:4px;
}

.scroll-container {
    padding-bottom: 1rem;
  }
  
  .custom-card {
    min-width: 300px;
    max-width: 300px;
    border-radius: 1rem;
    padding: 1rem;
    flex-shrink: 0;
  }
  
  .card-img-top {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  
  .thumb-img {
    width: 55px;
    height: 55px;
    object-fit: cover;
  }
  
  .bg-purple {
    background-color: #a259ff;
  }

  .carousel {
    width: 100vw;
    margin-bottom: 4rem;
  }
  
  .carousel-item {
    position: relative;
    height: auto;
  }
  
  .carousel-item img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
  }
  
  .caption-below {
    color: #fff;
    padding: 3rem 2rem;
    font-family: "Luckiest Guy", sans-serif;
    font-size: larger;
  }
  h8 {
    font-family: "Luckiest Guy", sans-serif; font-weight:bold;
}
  p1{
    font-family: "Luckiest Guy", sans-serif; font-weight:normal;
    font-size: 32px;
}
.banner-section {
  background-image: url('/static/img/ctd.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
}


.user-avatar {
  width: 40px;
  height: 40px;
  background-color: #ca0707;
  border-radius: 50%;
}

.timer-box {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  min-width: 220px;
}

/* Section glass background */
.how-it-works-section {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Cards */
.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease, border 0.3s ease;
  z-index: 1;
  position: relative;
}

/* Glowing border */
.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  border-color: rgba(124, 58, 237, 0.9);
}

/* Blur & fade others */
.row:hover .step-card {
  filter: blur(2px);
  opacity: 0.6;
}

.row:hover .step-card:hover {
  filter: blur(0);
  opacity: 1;
  z-index: 2;
}

/* Icon container with float + glow */
.step-icon {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  padding: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  animation: floatIcon 3s ease-in-out infinite;
  position: relative;
  transition: box-shadow 0.3s ease;
}

/* Float animation */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Glow on hover */
.step-icon:hover {
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.6), 0 0 30px rgba(124, 58, 237, 0.4);
}

.scroll-container {
  padding: 2rem;
}

.custom-card {
  min-width: 300px;
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 20px;
}

.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
}

.card-img-top {
  border-radius: 15px;
  cursor: pointer;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup-overlay img,
.popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  background-color: #fff;
  padding: 1rem;
  color: #000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.4s ease;
}

.popup-overlay .close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

.popup-gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.popup-gallery img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .caption-below {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

.scrolling-cards {
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.scrolling-cards::-webkit-scrollbar {
  height: 6px;
}
.scrolling-cards::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
.card {
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}
.nft-card {
  min-width: 260px;
  border-radius: 20px;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nft-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nft-image-wrapper {
  height: 450px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

.nft-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.nft-card:hover .nft-image-wrapper img {
  transform: scale(1.1);
}
.bg-custom {
  background-color: transparent; 
}
.scrolling-cont{
  padding: 27px 17px;
}
/*top header*/
/* Overlay background */
#couponPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup container */
#couponPopup .popup-content {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 255, 213, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 40px 30px;
  text-align: center;
  width: 90vw;
  max-width: 500px;
  animation: popupFadeIn 0.6s ease-out;
  font-size: 1.2rem;
  position: relative;
}

/* Close button */
#couponPopup .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Headline */
#couponPopup h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 8px #00ffd5;
}

/* Message */
#couponPopup p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

/* Copy button */
#copyCode {
  background: linear-gradient(135deg, #00ffd5, #00bfa6);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 18px #00ffd5;
}

#copyCode:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffd5;
}

/* Fade-in animation */
@keyframes popupFadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Container for social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px; /* More space between icons */
  margin-top: 30px; /* Extra space above */
  padding: 10px 0; /* Vertical padding */
  flex-wrap: wrap;
}

/* Individual social icon links */
.social-links a {
  font-size: 28px; /* Make icons a bit larger */
  color: #00ffd5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 12px #00ffd5;
}
.payment-option.selected {
  border: 2px solid #007bff;
  border-radius: 10px;
  padding: 10px;
  background-color: transparent;
}

.payment-option img {
  display: block;
  margin: 0 auto;
}
.glow-text {
  text-align: center;
  color:#0fff;
  font-weight: small;
  font-size: 24px;
}
/* authentication */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/static/img/bg.jpg') no-repeat center center/cover;
  padding: 2rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  animation: spin-in 0.7s ease-out;
  transform-origin: center;
}

.glass-card h1 {
  color: #fff;
  text-align: center;
}

.auth-container input, textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

input::placeholder {
  color: #eee;
}

.auth-container input[type="submit"] {
  width: 100%;
  background-color: #12c064;
  border: none;
}


ul.messages li.success,
ul.messages li.warning,
ul.messages li.error,
ul.messages li.info {
    margin:0;
    padding:14px 20px;
    list-style:none;
    color:#fff;
}

ul.messages li.success { background:#81ce81; }
ul.messages li.success a { color:#0ac33e; }

ul.messages li.error { background:#a30029; color:#e9828e; }
ul.messages li.error a { color:#e9828e; }

ul.messages li.info { background:#faffae; color:#696b4e; }
ul.messages li.info a { color:#1586de; }

ul.messages li.warning { background:#de9404; }
ul.messages li.warning a { color:#f49000; }

ul.messages li a.close {
    margin:0;
    float:right;
    opacity:1;
    border:0;
    box-shadow:none;
    text-shadow:none;
}
@keyframes spin-in {
  0% {
    transform: rotateY(-180deg) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}
/* Button with bounce effect for global featured section */
.bounce-btn {
  animation: bounce 1.5s infinite;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 30px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); 
  }
  40% {
    transform: translateY(-10px); 
  }
  60% {
    transform: translateY(-5px); 
  }
}

/* Base dark theme for all Jazzmin admin pages */
body.jazzmin,
body.jazzmin .wrapper,
body.jazzmin .content-wrapper,
body.jazzmin .content,
body.jazzmin .main-footer,
body.jazzmin .main-header {
    background-color: #000000 !important;
    color: #f5f5f5 !important;
}
/* Header text and icons */
body.jazzmin .main-header,
body.jazzmin .main-header .nav-link,
body.jazzmin .main-header .navbar-nav > .nav-item > .nav-link {
    color: #f5f5f5 !important;
}
/* Card header fix (removes blue tint) */
body.jazzmin .card-header {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #f5f5f5 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* Make sure all text in cards is light */
body.jazzmin .card-body,
body.jazzmin .card-footer {
    color: #e95757 !important;
}
/* Make links more readable on dark background */
body.jazzmin a {
    color: #cbb9b9 !important; /* Light blue */
    text-decoration: none;
}

body.jazzmin a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Specifically inside cards */
body.jazzmin .card a {
    color: #1200b9 !important;
}

body.jazzmin .card a:hover {
    color: #ffffff !important;
}

/* Sidebar */
body.jazzmin .main-sidebar {
    background-color: #111 !important;
    border-right: 1px solid #222;
}

/* Cards */
body.jazzmin .card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #ffffff;
}

/* Buttons */
body.jazzmin .btn-primary {
    background-color: #1f8ef1;
    border-color: #1f8ef1;
    border-radius: 8px;
    transition: 0.3s ease;
}
body.jazzmin .btn-primary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Inputs and forms */
body.jazzmin input,
body.jazzmin select,
body.jazzmin textarea {
    background-color: #111 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
    border-radius: 8px;
}

/* Top nav bar */
body.jazzmin .main-header {
    background-color: #111 !important;
    border-bottom: 1px solid #222;
}

/* Sidebar nav links */
body.jazzmin .nav-sidebar .nav-link {
    color: #ccc !important;
}
/* Style the hamburger menu (sidebar toggle) */
body.jazzmin .main-header .nav-link[data-widget="pushmenu"] i {
    color: #1f8ef1 !important; /* Your blue shade */
    font-size: 1.25rem;
    transition: color 0.3s ease;
}
body.jazzmin .nav-sidebar .nav-link.active {
    background-color: #000000 !important;
    color: white !important;
    border-radius: 8px;
}
/* Table data cells */
body.jazzmin .card td {
    background-color: #0000 !important;
    color: #f0f0f0 !important;
    border-color: #333 !important;
}

/* Full table */
body.jazzmin .card table {
    border-collapse: collapse;
    border: 1px solid #333 !important;
}
/* Full black background for all card sections */
body.jazzmin .card,
body.jazzmin .card-header,
body.jazzmin .card-body,
body.jazzmin .card-footer {
    background-color: #000000 !important;
    color: #f5f5f5 !important;
    border-color: #333 !important;
}
body.jazzmin .card-header {
    background-image: none !important;
    box-shadow: none !important;
}
/* Override global table header background color inside Jazzmin */
body.jazzmin .card .table thead th {
    background-color: #000000 !important;
    color: #f5f5f5 !important;
    border-color: #333 !important;
}

/* Optional: table body styling for consistency */
body.jazzmin .card .table tbody td {
    background-color: #000000 !important;
    color: #f5f5f5 !important;
    border-color: #333 !important;
}

