* {
  box-sizing: border-box;
    }

/* Style the body */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}
h1 {
    font-weight: 800;
}
h2, h3, h4, h5 {
    font-weight: 600;
}

a {
    color: var(--color-2);
    text-decoration: underline;
  }
  
  a:hover {
    color: rgb(94, 131, 255);
    text-decoration: underline;
  }
.image-container {
  height: 50vw; /* Responsive height based on viewport width */
  min-height: 250px; /* Minimum height for small screens */
  max-height: 600px; /* Maximum height */
  width: 100%;
  max-width: 1000px;   /* Optional: limit max width */
  margin: 0 auto;      /* Center the container itself */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Prevents overflow if image is too wide */
}

.image-container img {
  height: 100%;
  width: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  padding: 0;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    }
    .sticky-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Header/logo Title */
    .header {
        padding: 5px;
        text-align: center;
        background: var(--color-1);
        color: var(--text-color);
    }
/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--navigation-color);
  padding: 10px 20px;
  position: relative;
}

/* Navbar links (default for wider screens) */
.navbar-links {
  display: flex;
  flex: 1; /* Make the navbar links container take up all available space */
  gap: 0; /* Remove gaps between buttons */
}

.navbar-links a, .navbar-links button {
  flex: 1; /* Make each link or button take up equal width */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color);
  background: none;
  border: none;
  cursor: pointer;
  font: inherit; /* Inherit font styles */
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: var(--corner-rounding);
  box-sizing: border-box; /* Include padding in width */
}

/* Hover effect for desktop menu buttons */
.navbar-links a:hover, .navbar-links button:hover {
  background-color: var(--color-2);
  color: #000;
  transform: scale(1.03); /* Slight hover effect */
}

/* Hamburger menu button */
#hamburger-menu {
  display: none; /* Hidden by default */
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
}

/* Mobile menu (hidden by default) */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--navigation-color);
  overflow: hidden;
  z-index: 100;
}

/* Mobile menu links */
.mobile-menu a {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color);
  text-align: center;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background-color: var(--color-2);
  color: #000;
}

/* Show the mobile menu when active */
.mobile-menu.active {
  display: flex;
}

/* Responsive styles */
@media (max-width: 700px) {
  .navbar-links {
    display: none; /* Hide links on smaller screens */
  }

  #hamburger-menu {
    display: block; /* Show hamburger menu on small screens */
  }
}
  
  /* Style the navigation bar links and button */
  .navbar a, .navbar button {
    flex: 1; /* Make all items take equal width */
    display: flex;
    color: var(--text-color);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit; /* Inherit font styles */
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: var(--corner-rounding);
  }
  
  /* Change color on hover */
  .navbar a:hover, .navbar button:hover {
    background-color: #ddd;
    color: black;
    background: var(--color-2);
    transform: scale(1.03); /* Adjusted scale for hover effect */
  }

  .main img {
    max-width: 100%; /* Never exceed container width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline spacing */
    margin: 1rem auto; /* Vertical spacing + horizontal centering */
    border-radius: 8px; /* Optional styling */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional */
  }
/* Column container */
.row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
}

/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: var(--bg-color-second);
  color: var(--text-color);
  padding: 20px;
}
.video-container {
  margin-bottom: 20px;
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 15px;
  transition: transform 0.3s ease;
  border-radius: var(--corner-rounding); 
}
.video-wrapper:hover {
  transform: scale(1.02);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.sidebar-image-container {
  width: 100%;
  margin-bottom: 20px; /* Space below image */
  border-radius: var(--corner-rounding); /* Match your design */
  overflow: hidden; /* Keeps rounded corners */
}

.sidebar-image {
  width: 100%; /* Fills container width */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Removes bottom space */
  object-fit: cover; /* Optional: crops instead of squishing */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Optional hover effect */
.sidebar-image:hover {
  transform: scale(1.02);
}
/* Main content/right column */
.main {
  flex: 70%; /* 70% width */
  padding: 30px clamp(15px, 5vw, 80px); 
  color: var(--text-color);
  position: relative; /* Required for absolute positioning of the background */
  overflow: hidden; /* Prevents scrollbars if triangles go outside bounds */
  z-index: 1; /* Ensure content is above background */
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%; /* Ensure full width */
  max-width: 100%; /* Prevent expansion beyond viewport */
}
#triangle-bg {
  position: absolute;
  padding: 300px 0 0 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* This is the key change - sends it behind all content */
  background-color: var(--bg-color-first);
  pointer-events: none;
  overflow: hidden; /* Contain the triangles */
}
/* Project Files Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
  gap: 20px; /* Space between items */
  padding: 0 clamp(10px, 5vw, 80px); /* Dynamic side padding */
  box-sizing: border-box; /* Ensure padding is included in the width */
}

.project-item {
  background: var(--bg-color-second);
  border-radius: var(--corner-rounding);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
}
.project-title {
  color: var(--text-color-h3);
  text-align:center;
  font-size: 1.1em;
}
.project-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.project-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.project-download {
  padding: 15px;
  text-align: center;
  margin-bottom:6px
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-1);
  color: var(--text-color);
  border-radius: var(--corner-rounding);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.download-btn:hover {
  background: var(--color-2);
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 5px 20px;
  text-align: center;
  background: var(--bg-color-third);
  color: var(--text-color);
  position: relative; /* Ensure it doesn't overlap other content */
}

/* Footer button group */
.footer .button-group {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping of buttons */
  gap: 15px; /* Space between buttons */
  justify-content: center; /* Center align buttons */
}

/* Footer buttons */
.footer .button-container {
  flex: 1; /* Make buttons take equal width */
  min-width: 150px; /* Minimum width for buttons */
  text-align: center; /* Center align text */
}

.footer button {
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  overflow-wrap: break-word; /* Ensure compatibility */
  padding: 15px 20px;
  font-size: clamp(14px, 2vw, 16px); /* Responsive font size */
}

/* Responsive layout for small screens */
@media (max-width: 600px) {
  .footer .button-group {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center; /* Center align buttons */
  }

  .footer .button-container {
    width: 100%; /* Make buttons take full width */
  }
}
  
button {
    /* Existing button styles */
    padding: 30px 50px;
    background: var(--color-1);
    color: var(--text-color);
    text-shadow: var(--text-shadow-color) 0px 1px 2px;
    border: none;
    border-radius: var(--corner-rounding);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    
    /* New responsive text properties */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.3;
    width: 100%; /* Makes buttons equal width in group */
    position: relative; /* Needed for overlay */
}
/* For button groups */
.button-group {
    display: flex;
    gap: clamp(10px, 5vw, 80px); 
    width: 100%;
    box-sizing: border-box;
}

.button-container {
    flex: 1;
    min-width: 0; /* Allows text truncation */
}

button:hover {
    background: var(--color-2);
    color: #000;
    transform: scale(1.03); /* Adjusted scale for hover effect */
}

.tall-button button {
  min-height: 700px; /* Adjust as needed */
}

.button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.tall-button .button-bg {
  background-position: top center; /* Anchor image to top */
  background-size: cover;
  object-fit: cover; /* Ensures images fill space properly */
}
.button-text, .hover-text {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}
.button-container:not(.tall-button) .button-bg {
  background-position: right bottom;
  background-size: auto 100%; /* Scale to button height */
  left: auto; /* Override default positioning */
  right: 0;
  background-repeat: no-repeat; /* Prevent repeating */
}

.button-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hover-text {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  font-size: 0.9em;
}


/* ===== HOVER EFFECTS ===== */
button:hover .button-bg {
  opacity: 0.7;
}

button:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}

button:hover {
  transform: scale(1.03);
  background: var(--color-2);
  color: #000;
}

.collapsible {
  background-color: var(--color-1);
  color: var(--text-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  border-radius: var(--corner-rounding) var(--corner-rounding) 0 0; /* Only round top */
  transition: all 0.3s ease;
}

/* Content area */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: var(--bg-color-second);
  border-radius: 0 0 var(--corner-rounding) var(--corner-rounding); /* Only round bottom */
  margin-bottom: 10px; /* Space between sections */
}

/* When collapsed - round all corners */
.collapsible:not(.active) {
  border-radius: var(--corner-rounding);
}

/* Active/hover states */
.active, .collapsible:hover {
  background-color: var(--color-2);
}
.collapsible:hover {
  border-radius: var(--corner-rounding);
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Style table headers and table data */
th, td {
  text-align: center;
  padding: 16px;
}

th:first-child, td:first-child {
  text-align: left;
}

/* Zebra-striped table rows */
tr:nth-child(even) {
  background-color: var(--bg-color-third);
}

.theme-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px;
    background-color: var(--navigation-color);
  }
    /* default dark mode */
:root {
--color-1: #303d88;
--color-2: #6ea86b;
--text-color: #fff;
--text-color-h1: #9F76C6;
--text-color-h2: #fff;
--text-color-h3: #6D88F3;
--text-shadow-color: #838fd1;
--bg-color-first: #1d1d1d;
    --bg-color-second: #242424;
    --bg-color-third: #464646;
    --navigation-color: #000;
    --corner-rounding: 8px;
}
/* Light mode */
.light-mode {
--color-1: #fff86e;
--color-2: #5e8137;
--text-color: #000;
--text-color-h1: #226940;
--text-color-h2: #000;
--text-color-h3: #59a153;
--text-shadow-color: #fff;
--bg-color-first: #ffffff;
--bg-color-second: #f8f4e2;
--bg-color-third: #ece4ca;
--navigation-color: #8ca86b;
}
/* High contrast mode */
.high-contrast-mode {
    --color-1: #ffff00; /* Yellow */
    --color-2: #ff0000; /* Red */
    --text-color: #fff; /* White */
    --text-color-h1: #ff0000;
    --text-color-h2: #fff;
    --text-color-h3: #ffe600;
    --text-shadow-color: #000;
    --bg-color-first: #000; /* Black */
    --bg-color-second: #000; /* Black */
    --bg-color-third: #000; /* Black */
    --navigation-color: #0000ff; /* Blue */
}
h1 {
    color: var(--text-color-h1);
  }
h2 {
    color: var(--text-color-h2);
  }
h3 {
    color: var(--text-color-h3);
  }

.high-contrast-mode .header {
    color: #000000; /* Black text */
}

/* Ensure text is black on yellow background for buttons */
.high-contrast-mode button {
    color: #000000; /* Black text */
    background-color: var(--color-1); /* Yellow background */
}

.high-contrast-mode .navbar {
    color: white; /* White text */
}

.high-contrast-mode .navbar a {
color: #ffffff !important; /* Ensure white text by default */
text-decoration: none;
}

.high-contrast-mode .navbar a:hover {
background-color: #ffff00; /* Yellow background */
color: #000000 !important; /* Black text on hover */
}

/* High contrast specific styles */
.high-contrast-mode .navbar a {
color: #000;
}

.high-contrast-mode .navbar a:hover {
background-color: #ffff00;
color: #000;
}

#bluesky-post-container {
    position: relative; /* Override any absolute positioning */
    z-index: 1; /* Lower than footer */
    margin-bottom: 20px; /* Extra spacing */
    overflow: hidden; /* Contain any floating elements */
  }
  .footer {
    position: relative;
    z-index: 2; /* Higher than Bluesky embed */
  }

/* Responsive adjustments */
@media (max-width: 1200px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {
    flex-direction: column; /* Stack columns vertically */
  }

  .row .main {
    order: 2; /* Move the main content below the side column */
  }

  .row .side {
    order: 1; /* Move the side column above the main content */
  }
  .video-wrapper {
    margin: 15px; /* Bleed to edges on mobile */
  }
  #bluesky-post-container {
    min-height: 200px; /* Prevent collapse */
  }
  
  .bluesky-embed {
    max-width: 100% !important; /* Force containment */
    transform: scale(0.95); /* Slight scaling if needed */
  }
}
@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  .header {
    display: none;
  }
}
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

/* Style for the theme toggle button in the main navbar */
#theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

#theme-toggle:hover {
  background-color: var(--color-2);
  color: #000;
}

/* Style for the theme toggle button in the mobile menu */
#theme-toggle-mobile {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 100%; /* Ensure it spans the full width in the mobile menu */
}

#theme-toggle-mobile:hover {
  background-color: var(--color-2);
  color: #000;
}

/* Hide the main theme toggle button in smaller screens */
@media (max-width: 700px) {
  #theme-toggle {
    display: none;
  }
}

/* Mobile menu links */
.mobile-menu a, #theme-toggle-mobile {
  display: block; /* Ensure full width */
  width: 100%; /* Span the full width of the menu */
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-color);
  text-align: center;
  transition: background 0.3s ease;
  box-sizing: border-box; /* Include padding in width */
}

.mobile-menu a:hover, #theme-toggle-mobile:hover {
  background-color: var(--color-2);
  color: #000;
}

.tall-button button {
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  overflow-wrap: break-word; /* Ensure compatibility */
  text-align: center; /* Center-align the text */
  padding: 15px; /* Add padding for better spacing */
  line-height: 1.4; /* Improve readability */
}

.button-container:not(.tall-button) button {
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  overflow-wrap: break-word; /* Ensure compatibility */
  text-align: center; /* Center-align the text */
  padding: 10px; /* Add padding for better spacing */
  line-height: 1.4; /* Improve readability */
}

.about-container {
  display: flex; /* Use flexbox for layout */
  gap: 50px; /* Space between columns */
  align-items: flex-start; /* Align items at the top */
  margin: 0 clamp(10px, 5vw, 80px); /* Responsive side margins */
}

.about-left,
.about-right {
  flex: 1; /* Make both columns take up equal space */
  max-width: 50%; /* Ensure columns don't exceed half the width */
}

.about-left img,
.about-right img {
  max-width: 100%; /* Ensure images don't exceed their container width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
  margin: 10px 0; /* Add spacing around images */
}

.about-left p,
.about-right p {
  margin: 10px 0; /* Add spacing around text */
  line-height: 1.6; /* Improve readability */
}

/* Responsive layout for smaller screens */
@media (max-width: 700px) {
  .about-container {
    flex-direction: column; /* Stack columns vertically */
  }

  .about-left,
  .about-right {
    max-width: 100%; /* Allow full width for each column */
  }
}


.instructions-container {
  display: flex; /* Use flexbox for layout */
  gap: 50px; /* Space between columns */
  align-items: flex-start; /* Align items at the top */
  margin: 0px 50px; /* Add spacing around the container */
}

.instructions-left,
.instructions-right {
  flex: 1; /* Make both columns take up equal space */
  max-width: 50%; /* Ensure columns don't exceed half the width */
}

.instructions-left img,
.instructions-right img {
  max-width: 100%; /* Ensure images don't exceed their container width */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
  margin: 10px 0; /* Add spacing around images */
}

.instructions-left p,
.instructions-right p {
  margin: 10px 0; /* Add spacing around text */
  line-height: 1.6; /* Improve readability */
}

/* Responsive layout for smaller screens */
@media (max-width: 700px) {
  .instructions-container {
    flex-direction: column; /* Stack columns vertically */
  }

  .instructions-left,
  .instructions-right {
    max-width: 100%; /* Allow full width for each column */
  }
}
/* Full-width button container */
.wide-button-container {
  width: 100%; /* Full width */
  height:400px;
  position: relative;
  overflow: hidden; /* Hide overflowing parts of the image */
  border-radius: var(--corner-rounding); /* Optional: rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: shadow */
}

/* Button styling */
.wide-button-container button {
  width: 100%;
  height: 100%; /* Match the container's height */
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.wide-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Button content */
.wide-button-content {
  position: relative;
  z-index: 2;
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Optional: text shadow */
}

.calculator-container {
  background: var(--bg-color-first);
  padding: 20px;
  border-radius: var(--corner-rounding);
  max-width: 400px;
  margin: 20px auto;
  color: var(--text-color);
}

.calculator-container h2 {
  text-align: center;
  color: var(--text-color-h2);
}

.calculator-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.calculator-container input,
.calculator-container select,
.calculator-container button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--color-1);
  border-radius: var(--corner-rounding);
  font-size: 1rem;
  background: var(--bg-color-third);
  color: var(--text-color);
}

.calculator-container button {
  background: var(--color-1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.calculator-container button:hover {
  background: var(--color-2);
  transform: scale(1.03);
}

.result-container {
  margin-top: 20px;
  padding: 10px;
  background: var(--bg-color-third);
  border-radius: var(--corner-rounding);
  text-align: center;
  font-weight: bold;
  color: var(--text-color-h3);
}

/* Style the checkbox container */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between the checkbox and label */
  margin-bottom: 15px; /* Consistent spacing with other inputs */
}

/* Style the checkbox */
.checkbox-container input[type="checkbox"] {
  appearance: none; /* Remove default checkbox styling */
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-1);
  border-radius: var(--corner-rounding); /* Match the theme's corner rounding */
  background: var(--bg-color-third);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative; /* Needed for proper alignment of the checkmark */
}

/* Checkbox checked state */
.checkbox-container input[type="checkbox"]:checked {
  background: var(--color-1);
  border-color: var(--color-2);
}

/* Add a checkmark when checked */
.checkbox-container input[type="checkbox"]:checked::after {
  content: '✔';
  color: var(--text-color);
  font-size: 14px;
  position: absolute; /* Position relative to the checkbox */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}

/* Style the label */
.checkbox-container label {
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer; /* Make the label clickable */
}

