/* Resetting default margin and padding */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, table, caption, thead, tbody, tfoot, tr, th, td {
    margin: 0;
    padding: 0;
}

/* Setting background color for the entire page */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7; /* Light grey background for the entire page */
    padding: 20px; /* Adding padding to body to ensure a margin around the content */
    box-sizing: border-box; /* Ensure padding doesn't affect the total width/height */
}

/* Main content container with white background */
.main-content {
    background-color: white; /* White background for the main content */
    margin: 0 auto; /* Centering the main content */
    padding: 10px; /* 10px padding inside the main content */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: Adding a slight shadow for better separation */
}

/* General styling for paragraphs */
p {
    line-height: 1.5;
    margin-bottom: 1em;
}

/* Header styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5em;
    color: #363636;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.2em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.9em;
}

/* Link styles */
a {
    color: #363636;
    text-decoration: underline; /* Underline added for all links */
}

a:hover {
    text-decoration: none; /* Remove underline on hover */
}

/* List styles */
ul, ol {
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* Blockquote styles */
blockquote {
    margin: 0;
    padding: 0 1em;
    border-left: 4px solid #ccc;
    color: #363636;
}

/* Code block styles */
pre {
    margin-bottom: 1em;
    padding: 1em;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    overflow-x: auto;
}

/* Table styles */
table {
    width: 80%;
    background-color: #fafafa;
    border-collapse: collapse;
    table-layout: auto;
    padding: 10px;
    margin: 0 auto; /* Centering the table */
}

video-table {
    width: 80%;
    background-color: #fafafa;
    border-collapse: collapse;
    table-layout: auto;
    padding: 10px;
    margin: 0 auto; /* Centering the table */
}

.video-th {
    display: flex;
    align-items: center;       /* Centers content vertically */
    justify-content: center;   /* Centers content horizontally */
    gap: 10px;
    font-weight: bold;
}

.video-td {
    display: flex;
    align-items: center;       /* Centers content vertically */
    justify-content: center;   /* Centers content horizontally */
    gap: 10px;
    font-weight: normal;
}


th, td {
    padding: 8px;
    border: 0px solid #ccc;
    text-align: left;
}

/* Form styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
}

/* Button styles */
button,
input[type="submit"],
input[type="reset"] {
    font-family: Roboto, sans-serif;
    font-weight: bold;
    padding: 0.5em 1em;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
}

/* HR styles */
hr {
    margin: 1em 0;
    border: none;
    border-top: 1px solid #ccc;
}

/* Specific class styling */
.footer {
    text-align: center;
    margin: auto;
    padding: 10px;
    width: 80%;
    align: center;
}

.footer-item {
    text-align: center;
    margin: 5px;
    padding: 10px;
}

.video_form {
    background-color: #fcfcfc;
    text-align: left;
    margin: auto;
    width: 80%;
}

.noopsly_form {
    background-color: #fcfcfc;
    text-align: left;
    margin: auto;
    width: 80%;
}

.copy_icon {
    background-color: #fcfcfc;
    text-align: left;
    vertical-align: middle;
    margin: auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-block;
}

.reveal_eye {
    background-color: #fcfcfc;
    text-align: left;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin: auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-block;
}

.reveal_eye:hover, .copy_icon:hover {
    opacity: 0.7;
}

td.icon-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

td.field-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main {
    margin: auto;
    padding: 20px;
    text-align: left;
    width: 98%;
    align: center;
}

.center_block {
    background-color: #fcfcfc;
    margin: 8px;
    padding: 20px;
    border: 1px solid black;
    margin: auto;
    text-align: left;
    width: 80%;
    align: center;
}

/* Navigation styles */
header nav ul {
    list-style: none;
    margin: auto;
    padding: 4px;
    border: 1px solid white;
    float: right;
    display: flex;
    align-items: center;
    gap: 25px;
}

nav ul li {
    color: #717070;
    font-size: 14px;
    text-align: left;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s linear;
    display: flex;
    align-items: center;
}

.header_logo {
    width: 100px; /* width of your image */
    height: 100px; /* height of your image */
    background-image: url('/images/NOOPSLY_LOGO%20with%20TM%20242x242.png');
    background-size: cover;
    background-position: center;
    margin: 0; /* If you want no margin */
    padding: 0; /* if you want no padding */
}

/* Main container styling */
.main-container {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

/* Flexbox for the form layout */
.video_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.old-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.old-carousel-container {
    display: flex;
    overflow-x: auto; 
    scroll-behavior: smooth;
    flex: 1;
    justify-content: center;
}

.old-carousel-item {
    flex: 0 0 auto;
    margin-left: 10px; 
    margin-right: 10px; 
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.old-carousel-item.focused {
    transform: scale(1.33);
    opacity: 1;
}

.old-carousel-item img {
  cursor: pointer;
}

.video-container-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* .video-container { display: none; }
.video-visible { display: block; }
.scroll-indicator { background: none; border: none; font-size: 2em; cursor: pointer; z-index: 100; }
.scroll-left { margin-right: 10px; }
.scroll-right { margin-left: 10px; }
*/

/* Media query for small screens */
@media (max-width: 600px) {
    th, td {
        font-size: 14px;
        padding: 5px;
    }
    
    .old-carousel-item {
        margin: 5px;
    }

    .scroll-indicator {
        font-size: 1.5em;
    }
}

@keyframes heartbeat {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* body {
  color: #1c1c1c;
  background-color: #f4f3f2;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 1200px;
} */

.carousel-container {
  position: relative;
  margin: 0 auto;
  width: 500px;
  height: 500px;
}
.carousel-container .bullet-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-container .bullet-container .bullet {
  margin-right: 8;
  height: 16;
  width: 16;
  border-radius: 50%;
  background-color: teal;
  opacity: 0.5;
}
.carousel-container .bullet-container .bullet:last-child {
  margin-right: 0px;
}
.carousel-container .bullet-container .bullet.active {
  opacity: 1;
}
.carousel-container .carousel-content {
  position: relative;
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
}
.carousel-container .carousel-content .carousel-single {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: z-index 0ms 250ms;
}
.carousel-container .carousel-content .carousel-single .carousel-single-image {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  transform: scale(0);
  opacity: 0;
}
.carousel-container .carousel-content .carousel-single .carousel-single-download {
  position: absolute;
  display: block;
  right: -22px;
  bottom: 12px;
  padding: 15px;
  color: #333333;
  background-color: #00a79a;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Roboto';
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
}
.carousel-container .carousel-content .carousel-single .carousel-single-download:hover, .carousel-container .carousel-content .carousel-single .carousel-single-download:focus {
  outline: none;
  text-decoration: none;
}
.carousel-container .carousel-content .carousel-single .carousel-single-title {
  display: block;
  float: left;
  margin: 16px 0 0 20px;
  font-size: 20px;
  font-family: 'Roboto';
  font-weight: 400;
  color: #1c1c1c;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
}
.carousel-container .carousel-content .carousel-single .carousel-single-likes {
  display: block;
  float: right;
  margin: 16px 20px 0 0;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  opacity: 0;
}
.carousel-container .carousel-content .carousel-single .carousel-single-likes i {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #ff6060;
  transition: 500ms cubic-bezier(0.17, 0.67, 0.55, 1.43);
  transform: scale(0);
}
.carousel-container .carousel-content .carousel-single .carousel-single-likes p {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  color: #ffffff;
}
.carousel-container .carousel-content .carousel-single .carousel-single-likes:hover, .carousel-container .carousel-content .carousel-single .carousel-single-likes:focus {
  outline: none;
  text-decoration: none;
}
.carousel-container .carousel-content .carousel-single.preactivede .carousel-single-image {
  transform: translateX(-50%) scale(0);
}
.carousel-container .carousel-content .carousel-single.preactive {
  z-index: 1;
}
.carousel-container .carousel-content .carousel-single.preactive .carousel-single-image {
  opacity: 0.3;
  transform: translateX(-25%) scale(0.8);
}
.carousel-container .carousel-content .carousel-single.preactive .carousel-single-download {
  transform: translateX(-150px);
}
.carousel-container .carousel-content .carousel-single.preactive .carousel-single-title {
  transform: translateX(-150px);
}
.carousel-container .carousel-content .carousel-single.preactive .carousel-single-likes {
  transform: translateX(-150px);
}
.carousel-container .carousel-content .carousel-single.proactive {
  z-index: 1;
}
.carousel-container .carousel-content .carousel-single.proactive .carousel-single-image {
  opacity: 0.3;
  transform: translateX(25%) scale(0.8);
}
.carousel-container .carousel-content .carousel-single.proactive .carousel-single-download {
  transform: translateX(150px);
}
.carousel-container .carousel-content .carousel-single.proactive .carousel-single-title {
  transform: translateX(150px);
}
.carousel-container .carousel-content .carousel-single.proactive .carousel-single-likes {
  transform: translateX(150px);
}
.carousel-container .carousel-content .carousel-single.proactivede .carousel-single-image {
  transform: translateX(50%) scale(0);
}
.carousel-container .carousel-content .carousel-single.active {
  z-index: 2;
}
.carousel-container .carousel-content .carousel-single.active .carousel-single-image {
  opacity: 1;
  transform: translateX(0%) scale(1);
}
.carousel-container .carousel-content .carousel-single.active .carousel-single-download {
  opacity: 1;
  transition-delay: 100ms;
  transform: translateX(0px);
}
.carousel-container .carousel-content .carousel-single.active .carousel-single-title {
  opacity: 1;
  transition-delay: 200ms;
  transform: translateX(0px);
}
.carousel-container .carousel-content .carousel-single.active .carousel-single-likes {
  opacity: 1;
  transition-delay: 300ms;
  transform: translateX(0px);
}
.carousel-container .carousel-content .carousel-single.active .carousel-single-likes i {
  animation-name: heartbeat;
  animation-duration: 500ms;
  animation-delay: 900ms;
  animation-interation: 1;
  animation-fill-mode: forwards;
}
.carousel-container .carousel-left {
  position: absolute;
  z-index: 3;
  display: block;
  right: 85%;
  top: 50%;
  color: #00a79a;
  transform: translateY(-50%);
  padding: 20px 15px;
  border-top: 2px solid #00a79a;
  border-right: 2px solid #00a79a;
  border-bottom: 2px solid #00a79a;
  border-left: 2px solid #00a79a;
  border-radius: 10px;
  margin-right: -2px;
}
.carousel-container .carousel-right {
  position: absolute;
  z-index: 3;
  display: block;
  left: 85%;
  top: 50%;
  color: #00a79a;
  transform: translateY(-50%);
  padding: 20px 15px;
  border-top: 2px solid #00a79a;
  border-right: 2px solid #00a79a;
  border-bottom: 2px solid #00a79a;
  border-left: 2px solid #00a79a;
  border-radius: 10px;
  margin-left: -2px;
}
.carousel-container .not-visible {
  display: none !important;
}

/*
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #88898c;
  display: none; /* Initially hidden */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  width: 70%; /* Adjust for smaller screens */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.overlay-content video {
  width: 100%;
  height: auto;
}

.overlay-content button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00a79a;
  color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.overlay-content button:hover {
  background-color: #fdb745;
}

/* Pricing Table Styles */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.pricing-plan {
    flex: 1;
    max-width: 300px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    background: white;
    transition: transform 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
}

.pricing-plan h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.pricing-plan .price {
    font-size: 36px;
    color: #0570de;
    margin: 20px 0;
    font-weight: bold;
}

.pricing-plan .price small {
    font-size: 16px;
    color: #666;
}

.pricing-plan .description {
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.pricing-plan .credits {
    color: #333;
    font-weight: bold;
    margin-bottom: 25px;
}

.pricing-plan button,
.pricing-plan input[type="submit"] {
    background-color: #00a79a !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 16px !important;
    font-weight: bold !important;
    transition: background-color 0.2s ease !important;
}

.pricing-plan button:hover,
.pricing-plan input[type="submit"]:hover {
    background-color: #008f82 !important;
}

.pricing-plan button:focus,
.pricing-plan input[type="submit"]:focus {
    outline: 2px solid #f0871e !important;
    outline-offset: 2px !important;
    color: white !important;
    background-color: #008f82 !important;
    text-decoration: none !important;
}

.pricing-plan form {
    margin: 0;
}

/* Subscription Terms */
.subscription-terms {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.subscription-terms a {
    color: #0570de;
    text-decoration: none;
}

.subscription-terms a:hover {
    text-decoration: underline;
}

/* Subscription Management Styles */
.subscription-details {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.subscription-details table {
    width: 100%;
    border-collapse: collapse;
}

.subscription-details th {
    text-align: left;
    padding: 12px;
    background: #f1f3f5;
    border-bottom: 1px solid #dee2e6;
    width: 200px;
}

.subscription-details td {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.price-change {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.cancel-subscription {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff4f4;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ffcdd2;
}

.cancel-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
}

.cancel-button:hover {
    background: #c82333;
}

.change-plan {
    background: #0570de;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    width: 100%;
}

.change-plan:hover {
    background: #0356b3;
}

/* Save and Quit Button Styles */
input.save-button,
button.save-button {
    background-color: #00a79a !important;
    color: #f4f3f2 !important;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    transition: background-color 0.2s ease;
}

input.save-button:hover,
button.save-button:hover {
    background-color: #008f84 !important;
}

input.quit-button,
button.quit-button {
    background-color: #f0871e !important;
    color: #f4f3f2 !important;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    transition: background-color 0.2s ease;
}

input.quit-button:hover,
button.quit-button:hover {
    background-color: #d67a1b !important;
}

input:checked + .slider {
    background-color: #00a79a;
}

input:checked + .slider:hover {
    background-color: #008f84;
}

/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #00a79a;
}

input:checked + .slider:hover {
  background-color: #008f84;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Consent page specific styles */
.consent-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.consent-text {
    color: #333;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.consent-text p {
    margin-bottom: 1rem;
}

.consent-button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .consent-button-container {
        flex-direction: column;
    }
    
    .consent-button-container button {
        width: 100%;
    }
}

.consent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.consent-overlay-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    width: 400px;
}

.consent-overlay-content h2 {
    color: #363636;
    margin-bottom: 15px;
}

.consent-overlay-content p {
    color: #444;
    line-height: 1.5;
}

.context-box {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    white-space: pre-wrap;
    line-height: 1.65;
    font-weight: normal;
}

.context-box strong {
    font-weight: 700;
    color: #2c5282;
}

.speaker-label {
    font-style: italic !important;
    color: #0b6279 !important;
    display: inline-block;
    min-width: 60px;
}

/* Two-column layout for transcript and CV */
.transcript-cv-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.transcript-column {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

.cv-column {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink below content size */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .transcript-cv-container {
        flex-direction: column;
    }
}

/* Terms List Styles */
.terms-list {
    list-style-type: square;
    margin-left: 30px;
    margin-bottom: 15px;
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Credits Popup Styles */
.credits-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    pointer-events: none;
}

.credits-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    width: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    pointer-events: auto;
    position: absolute;
    top: 50px;
    right: 0;
    border: 1px solid #ddd;
}

.credits-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: sans-serif;
}

.credits-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.8em; /* 20% smaller than parent font */
}

.credits-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.credits-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #0b6279;
    font-size: inherit;
}

.credits-count {
    font-size: inherit;
    font-weight: bold;
    color: #0b6279;
}

.buy-more-button {
    display: inline-block !important;
    background-color: #00a79a !important;
    color: white !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    transition: background-color 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.buy-more-button:hover {
    background-color: #008f82 !important;
    color: white !important;
    text-decoration: none !important;
}

.buy-more-button:focus {
    outline: 2px solid #f0871e !important;
    outline-offset: 2px !important;
    color: white !important;
    background-color: #008f82 !important;
    text-decoration: none !important;
}

/* Override general link styles for buy-more-button */
a.buy-more-button {
    color: white !important;
    text-decoration: none !important;
}

a.buy-more-button:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Maximum specificity override for credits popup buttons */
.credits-content a.buy-more-button {
    color: white !important;
    text-decoration: none !important;
    background-color: #00a79a !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.credits-content a.buy-more-button:hover {
    color: white !important;
    text-decoration: none !important;
    background-color: #008f82 !important;
}

/* Even more specific for the credits popup */
div.credits-content a.buy-more-button {
    color: white !important;
    text-decoration: none !important;
    background-color: #00a79a !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

div.credits-content a.buy-more-button:hover {
    color: white !important;
    text-decoration: none !important;
    background-color: #008f82 !important;
}

/* Credits Icon Styles */
.credits-icon {
    cursor: pointer;
    width: 21.6px;
    height: 21.6px;
    vertical-align: middle;
    transition: opacity 0.2s ease;
    fill: none;
    stroke: #333;
    stroke-width: 0.5;
}

/* Credits Icon - Larger size */
.credits-link .credits-icon {
    width: 23.76px;
    height: 23.76px;
    fill: #ffffff;
    vertical-align: middle;
    margin-top: -1px;
}

.credits-icon:hover {
    opacity: 0.7;
}

/* Navigation Link Styles */
nav ul li .nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

nav ul li .nav-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Navigation Icon Styles */
nav ul li .nav-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

nav ul li .nav-icon:hover {
    opacity: 0.7;
}

/* Credits Link Styles (for backward compatibility) */
.credits-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.credits-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: rgba(0, 0, 0, 0.05);
}


