/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #000; /* Fallback background */
}

body {
  font-family: 'Raleway', 'Roboto', sans-serif;
  background-color: transparent;
  color: #fff;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header styles */
header {
  position: absolute;
  width: 100%;
  top: 20px;
  z-index: 10;
}

.main-nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: #b8458a;
  font-weight: 800;
}

/* Hero section */
.hero {
  position: relative;
  height: 587px;
  overflow: hidden;
}

/* background layer (covers whole hero) */
.hero-bg {
  position: absolute;
  inset: 0;                    /* top:0; right:0; bottom:0; left:0; */
  background-image: url('../assets/images/headerspace.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* dark overlay above the background, below content */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  opacity: 0.56;
  z-index: 1;
}

/* centering container — absolute and flex-centered */
.hero-content {
  position: absolute;
  inset: 0;                    /* fill the hero area */
  display: flex;
  align-items: center;         
  justify-content: center;    
  text-align: center;          
  padding: 0 16px;             /* small side padding for small screens */
  z-index: 2;                  /* above bg and overlay */
}

/* the title itself */
.hero-title {
  max-width: 726px;
  width: 100%;
  margin: 0;
  font-size: 48px;
  font-weight: bold;
@media (max-width: 576px) {
  .articles-page .section-title {
    text-align: center;
    margin-left: 0;
  }
  .articles-page .featured-articles-container {
    padding-left: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .articles-page .pdf-file-item {
    font-size: 14px;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: 0;
    flex-direction: row;
    align-items: center;
  }
  .articles-page .pdf-icon {
    width: 20px;
    height: 24px;
    margin-right: 6px;
  }
  .articles-page .file-dashes {
    display: none;
  }
  .articles-page .file-name {
    font-size: 14px;
    font-weight: 600;
  }
}

  line-height: 1.33;
  color: red;
}



/* Alert section */
.alert {
  padding: 20px 0;
  text-align: center;
  background: transparent; /* Allow bottom background to show through */
}

.alert-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffdd00;
  margin-bottom: 5px;
}

.alert-subtitle {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.alert-description {
  font-size: 16px;
  font-weight: normal;
  color: white;
  margin-bottom: 10px;
}

.read-more {
  color: #ffc400;
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
}

/* Welcome section */
.welcome {
  padding: 40px 0;
  background: transparent; /* Allow bottom background to show through */
}

/* Home section */
.home {
  padding: 0px 0;
  background: transparent; /* Allow bottom background to show through */

  margin-bottom: 400px;
}

.home-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  background: transparent;
}

.home-box {
  border: none;
  background: transparent;
  padding: 10px;
  width: 100%;
  max-width: 1073px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.homeb {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
  background: transparent;
}

.homeb img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border: 0px solid white;
  margin-bottom: 20px;
}

.home-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}


/* Suspects section */
.suspects {
  padding: 40px 0;
  background-color: transparent; /* Ensure section is transparent */
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* Join link styling (Roboto 24 bold) */
.join-link {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffc400;
  display: inline-block;
  margin-top: 12px;
}

/* Join Us text styling (32px bold underlined) */
.join-us-text {
  font-size: 32px;
  font-weight: bold;
  text-decoration: underline;
  color: #ffc400;
  text-align: center;
  margin: 5px 0 115px 0;
  display: block;
}

.suspects-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.suspects-box {
  border: 8px solid white;
  padding: 20px;
  width: 100%;
  max-width: 1073px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.suspect {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.suspect img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 2px solid white;
  margin-bottom: 20px;
}

.suspect-name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.suspect-role {
  font-size: 12px;
  color: #a6a6a6;
  text-align: center;
}

/* Articles section */
.articles {
  padding: 40px 0;
}

.articles-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.article {
  width: 423px;
  border: 3px solid white;
  margin-bottom: 40px;
}

.article-img {
  width: 382px;
  height: 323px;
  object-fit: cover;
  margin: 20px auto;
  display: block;
}

.article-title {
  font-size: 24px;
  font-weight: bold;
  padding: 0 20px;
  margin-bottom: 20px;
}

.article-excerpt {
  font-size: 16px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.article-link {
  font-size: 18px;
  font-weight: bold;
  text-decoration: underline;
  padding: 0 20px;
  display: block;
  margin-bottom: 20px;
}

/* Featured Articles page specific styles */
.featured-files {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0;
  background-color: #000;
}

.featured-files .section-title {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: white;
  text-align: left;
  margin-bottom: 40px;

  margin-left: 0px;
}

.featured-articles-container {
  max-width: 900px;
  /* border: 1px solid white; */
  margin: 0 0 0 60px;
  text-align: left;
  padding-left: 0px;
}

.folder-icon {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.folder-image {
    width: 48px;
    height: auto;
    margin-bottom: 0px;
}

.file-dashes {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: white;
    margin-right: 10px;
    margin-left: 8px;
    line-height: 1;
    vertical-align: top;
}

.file-tree-lines {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: white;
    line-height: 25px;
    margin-left: 20px;
    margin-bottom: 0px;
}

.pdf-file-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-left: 20px; /* Align dashes with vertical bars */
    margin-top: -40px; /* Move up relative to file-tree-lines */
}

.pdf-file-item .file-name {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 19px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
@media (max-width: 600px) {
  .articles-page .file-dashes {
    font-size: 0.85em;
    letter-spacing: 0.1em;
  }
  .articles-page .pdf-file-item .file-name {
    font-size: 0.95em;
  }
  .articles-page .pdf-icon,
  .articles-page .pdf-icon.alt {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    background-size: contain;
  }
  .articles-page .featured-articles-container {
    margin-left: 18px;
  }
}

.pdf-file-item .file-name:hover {
    color: #ffc400;
    text-decoration: underline;
}

.pdf-icon {
    width: 33px;
    height: 40px;
    margin-right: 10px;
    background-image: url('../assets/9556d2b05fce27325ab32d2f91388b60b777ada0.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.pdf-icon.alt {
    background-image: url('../assets/54c0da531d88958dd07f956915565730a1a4f8d3.svg');
}

.video-section {
    margin-top: 60px;
    position: relative;
    text-align: center;
}

.video-placeholder {
    width: 100%;
    max-width: 969px;
    margin: 0 auto;
    position: relative;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 198px;
    height: 198px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-overlay::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 60px solid white;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    margin-left: 20px;
}

.video-title {
    text-align: center;
    font-size: 48px;
    margin-top: 20px;
    color: white;
    font-weight: normal;
    font-family: 'Roboto', sans-serif;
}

/* Research section */
.research {
  padding: 40px 0;
}

.research-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.research-container a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: block;
}

.research-image {
  height: clamp(298px, 35vw, 498px);
  width: auto;
  border: 1px solid white;
  display: block;
}

/* Anatomy section */
.anatomy {
  padding: 40px 0;
}

.anatomy-container {
  border: 7px solid white;
  padding: 20px;
  margin: 0 auto 40px auto;
  width: fit-content;
  max-width: 100%;
}

.anatomy-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.anatomy-row:last-child {
  margin-bottom: 0;
}

.anatomy-image {
  height: clamp(298px, 35vw, 498px);
  width: auto;
  border: none;
  display: block;
  object-fit: contain;
}

/* ensure section titles inside anatomy container span full width and are centered */
.anatomy-container .section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 20px;
}
.anatomy-container .mothership-image {
  grid-column: 1 / -1;
  margin: 0 auto;
}

/* Mothership section */
.mothership {
  padding: 40px 0;
}

.mothership-container {
  border: 7px solid white;
  padding: 20px;
  margin: 0 auto 40px auto;
  width: fit-content;
  max-width: 100%;
}

.mothership-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
}

.mothership-row:last-child {
  margin-bottom: 0;
}

.mothership-image {
  width: auto;
  height: auto;
  max-width: 100%;
  border: none;
  display: block;
  object-fit: contain;
}

/* Scale technology1 specifically */
.mothership-image[src*="technology1"] {
  max-width: clamp(495px, 70vw, 990px);
}

/* Scale technology2 and technology3 specifically */
.mothership-image[src*="technology2"], 
.mothership-image[src*="technology3"] {
  max-width: clamp(240px, 34vw, 481px);
}

/* Comments section */
.comments {
  padding: 10px 0;
}

.comments-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.comments-title {
  font-size: 32px;
  font-weight: bold;
  margin-right: 20px;
}

.comments-count {
  font-size: 16px;
  color: #8c8c8c;
}

.comments-line {
  height: 1px;
  background-color: white;
  margin-bottom: 20px;
}

.comment-form {
  margin-bottom: 30px;
}

.comment-input {
  width: 100%;
  padding: 15px;
  background-color: #444444;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 20px;
  outline: none;
}

.comment-input::placeholder {
  color: #6c6c6c;
}

.comments-list {
  display: flex;
  flex-direction: column;
}

.comment {
  display: flex;
  margin-bottom: 20px;
}

.comment-avatar {
  width: 65px;
  height: 65px;
  margin-right: 20px;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 10px;
  color: #565656;
  font-weight: bold;
  margin-bottom: 10px;
}

.comment-text {
  font-size: 12px;
  margin-bottom: 10px;
}

.comment-actions {
  display: flex;
  font-size: 10px;
  color: #565656;
}

.comment-like {
  display: flex;
  align-items: center;
  margin-right: 10px;
  cursor: pointer; /* Add pointer cursor to indicate it's clickable */
}

.comment-reply {
  margin-right: 5px;
  cursor: pointer; /* Add pointer cursor to indicate it's clickable */
}

.reply {
  margin-left: 50px;
}

/* Footer */
footer {
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-top: 40px; /* Add margin to separate from bottom section */
}

/* Comments section below bottom background */
.suspects-page .comments {
  position: relative;
  z-index: 2;
  margin-top: 20px; /* Space after bottom background */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

/* Special margin for suspects page - no longer needed with new structure */
.suspects-page .suspects {
  /* margin-bottom removed since suspects are now inside bottom-section */
  background-color: transparent;
}

/* Bottom section with background (positioned above footer) */
.bottom-section {
  position: relative;
  min-height: 400px; /* Default height for all pages */
  overflow: hidden;
  margin-bottom: 0; /* Ensure it sits right above footer */
}

.articles-page .bottom-section {
  min-height: 1000px;
}

@media (max-width: 576px) {
  .articles-page .bottom-section {
    min-height: 500px;
  }
}

/* Specific height for suspects page */
.suspects-page .bottom-section {
  min-height: 1200px;
}

/* Specific height for research page */
.research-page .bottom-section {
  min-height: 1500px;
}

/* Bottom background layer */
.bottom-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bottomback.png');
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Content over bottom background */
.bottom-section .container {
  position: relative;
  z-index: 2;
  padding: 0px 15px;
}

.footer-divider {
  height: 1px;
  background-color: white;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-nav a {
  margin: 0 20px;
  font-size: 14px;
}

.footer-copyright {
  text-align: center;
  font-size: 16px;
}

/* Media queries for responsive design */
@media (max-width: 1200px) {
  .articles-container {
    justify-content: space-around;
  }
  .article {
    width: 45%;
  }
  
  /* Carousel responsive adjustments - Scale proportionally */
  .carousel-container {
    max-width: 90% !important;
  }
  .carousel-wrapper {
  .footer-nav a {
    margin: 0 8px;
  }
    width: 90% !important;
    height: calc(835px * 0.9) !important; /* Scale container proportionally */
    max-width: 918px !important; /* 90% of 1018px */
    padding: 18px 54px 54px 54px !important; /* Scale padding proportionally */
  }
  #carouselImage {
    width: calc(506px * 0.9) !important; /* Scale image proportionally */
    height: calc(654px * 0.9) !important;
  }
  .carousel-btn-prev {
    left: 15px !important;
  }
  .carousel-btn-next {
    right: 15px !important;
  }
  
  /* Research Carousel responsive adjustments - Scale proportionally */
  .research-carousel-container {
    max-width: 90% !important;
  }
  .research-carousel-wrapper {
    width: 90% !important;
    height: calc(835px * 0.9) !important; /* Scale container proportionally */
    max-width: 918px !important; /* 90% of 1018px */
    padding: 18px 54px 54px 54px !important; /* Scale padding proportionally */
  }
  #researchCarouselImage {
    width: calc(506px * 0.9) !important; /* Scale image proportionally */
    height: calc(654px * 0.9) !important;
  }
  .research-carousel-btn-prev {
    left: 15px !important;
  }
  .research-carousel-btn-next {
    right: 15px !important;
  }
}

@media (max-width: 770px) {
  .featured-articles-container {
    padding-left: 0;
  }
  .suspects-box {
    flex-direction: column;
    align-items: center;
  }
  .research-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }
  .research-image {
    width: auto;
    height: auto;
    max-width: 99%;
    margin-bottom: 0;
  }
  .anatomy-container {
    width: 100%;
  }
  .anatomy-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .anatomy-image {
    width: auto;
    height: clamp(200px, 50vw, 400px);
    max-width: 80%;
  }
  .mothership-container {
    width: 100%;
  }
  .mothership-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mothership-image {
    width: auto;
    height: auto;
    max-width: 95%;
  }
  
  .mothership-image[src*="technology1"] {
    max-width: 95% !important;
    min-width: auto !important;
  }
  
  .mothership-image[src*="technology2"], 
  .mothership-image[src*="technology3"] {
    max-width: 90% !important;
    min-width: auto !important;
  }
  .article {
    width: 100%;
  }
  
  /* Carousel mobile adjustments - Under 770px */
  .carousel-container {
    max-width: 95% !important; /* Use percentage for better mobile scaling */
    width: 95% !important;
    margin: 0 auto !important; /* Center the container */
  }
  .carousel-wrapper {
    width: 100% !important;
    height: auto !important; /* Auto height to fit content */
    min-height: auto !important;
    padding: 20px !important; /* Even padding all around */
  }
  /* Mobile image - fit within container */
  #carouselImage {
    width: calc(100% - 40px) !important; /* Within container minus padding */
    height: auto !important; /* Maintain aspect ratio */
    max-width: 100% !important;
  }
  .carousel-caption {
    margin-top: 20px !important; /* Space between image and caption */
  }
  
  /* Research Carousel mobile adjustments - Under 770px */
  .research-carousel-container {
    max-width: 95% !important; /* Use percentage for better mobile scaling */
    width: 95% !important;
    margin: 0 auto !important; /* Center the container */
  }
  .research-carousel-wrapper {
    width: 100% !important;
    height: auto !important; /* Auto height to fit content */
    min-height: auto !important;
    padding: 20px !important; /* Even padding all around */
  }
  .research-carousel-btn {
    display: none !important; /* Hide arrows on mobile */
  }
  /* Mobile image - fit within container */
  #researchCarouselImage {
    width: calc(100% - 40px) !important; /* Within container minus padding */
    height: auto !important; /* Maintain aspect ratio */
    max-width: 100% !important;
  }
  .research-carousel-caption {
    margin-top: 20px !important; /* Space between image and caption */
  }
  
  /* Make Michelle Fuller profile stack vertically on mobile */
  .suspect-profile div[style*="display: flex"] {
    display: block !important;
  }
  .suspect-profile div[style*="flex: 0 0 500px"] {
    flex: none !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto 30px auto !important;
  }
  .suspect-profile div[style*="flex: 1"] {
    flex: none !important;
    padding-top: 0 !important;
  }
  
  /* Reduce bottom-section container top padding on mobile */
  .bottom-section .container {
    padding-top: 0 !important;
  }
}

@media (max-width: 576px) {
  .bottom-section {
    min-height: 500px;
  }
  .main-nav {
    justify-content: center;
  }
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 24px;
  }
  .nav-links a {
    font-size: 12px;
  }
   .footer-nav a {
    margin: 0 12px;
    font-size: 12px;
  }
  
  /* Keep carousel caption responsive but don't override container sizing */
  .carousel-caption {
    font-size: 12px !important;
    padding: 10px !important;
  }
}

/* Close button positioning */
#closeModal {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 1001 !important;
  background: none !important;
  border: none !important;
  color: #ffc400 !important;
  font-size: 20px !important;
  cursor: pointer !important;
}

/* Modal responsive styles */
@media (max-width: 768px) {
  .modal-content {
    width: 95% !important;
    margin: 10px auto !important;
    padding: 60px 20px 40px 20px !important;
    max-height: calc(100vh - 20px) !important;
    overflow-y: auto !important;
  }
  
  .modal-content form {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .modal-content input,
  .modal-content select {
    width: 100% !important;
    margin-bottom: 15px !important;
    box-sizing: border-box !important;
  }
  
  .modal-content .checkbox-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
    text-align: left !important;
    width: 100% !important;
  }
  
  .modal-content .checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  
  .modal-content .checkbox-input {
    margin: 2px 10px 0 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    width: auto !important;
  }
  
  .modal-content .checkbox-text {
    flex: 1 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    word-wrap: break-word !important;
    width: auto !important;
  }
  
  #closeModal {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    z-index: 1001 !important;
    background: none !important;
    border: none !important;
    color: #ffc400 !important;
    font-size: 24px !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
    align-self: auto !important;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98% !important;
    margin: 5px auto !important;
    padding: 40px 15px 30px 15px !important;
  }
  
  .modal-content p {
    font-size: 14px !important;
  }
  
  .modal-content button {
    width: 100% !important;
    padding: 15px !important;
    font-size: 16px !important;
    min-height: 44px !important;
    touch-action: manipulation !important;
  }
  
  .modal-content button[type="submit"] {
    background: none !important;
    border: none !important;
    color: #ffc400 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    width: 100% !important;
    padding: 20px !important;
    font-size: 18px !important;
    min-height: 50px !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 196, 0, 0.3) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }
  
  .modal-content #submitBtn {
    background: none !important;
    border: none !important;
    color: #ffc400 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    width: 100% !important;
    padding: 20px 10px !important;
    font-size: 18px !important;
    min-height: 50px !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 196, 0, 0.3) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
  }
  
  .modal-content .checkbox-container label {
    font-size: 12px !important;
  }
  
  .modal-content .checkbox-label {
    font-size: 12px !important;
  }
  
  .modal-content .checkbox-container {
    width: 100% !important;
    align-items: flex-start !important;
  }
  
  .modal-content .checkbox-input {
    margin: 2px 8px 0 0 !important;
  }
  
  #closeModal {
    top: 8px !important;
    right: 12px !important;
    font-size: 26px !important;
    background: none !important;
    border: none !important;
    color: #ffc400 !important;
    cursor: pointer !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
    align-self: auto !important;
  }
}
