@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');
/* Import new font (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

:root{

    --primary-text-color: #000;
    --bg-color: #ffffff;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #000;/* button bg color*/

    
    --header-link-hover: #000000;
    --header-link-hover-bg: #bababa36;

    --input-hover-bd-color: #232323;
    
    --dropdown-bg: #f3f4f6;
    --dropdown-hover-bg: #dddddd84;

    --faq-h-text: #0e0e0e;
    --faq-content-text: #1e1e1e;

    --hr-color: #e5e7eb;

    --footer-link: #282828;
    --footer-link-hover: #000;

    --header-bg: #edececa5;
    /* color: #312f2f; */
    --hero-gradient: #fcfcfc;
    --hero-bg-img: url("../assets/images/background/dots-dark.svg");

}

.tw-dark {
    --primary-text-color: #fff;
    --bg-color: #000000;

    --btn-color: #000000;/* button color*/
    --btn-bg: #ffffff;/* button bg color*/

    --header-link-hover: #ffffff;
    --header-link-hover-bg: #8a8a8a5e;

    --input-hover-bd-color: #f8f8f8;

    --dropdown-bg: #171717;
    --dropdown-hover-bg: #2d2d2ddb;

    --faq-h-text: #efefef;
    --faq-content-text: #d4d4d4;

    --hr-color: #e1e1e195;

    --footer-link: #cfcfcf;
    --footer-link-hover: #ffffff;

    --header-bg: #232323a5;

    --hero-gradient: #000;
    --hero-bg-img: url("../assets/images/background/dots.svg");

  }


html {
    scroll-behavior: smooth;
    /* font-family: "Ubuntu", sans-serif; */
}

body.modal-open {
    overflow: hidden;
}

header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease;
}

hr{
    border-color:var(--hr-color); 
    border-style: solid;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.header-links {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
    padding: 8px 15px;
    z-index: 2; 
    cursor: pointer;
    transition: background-color 0.5s, color 0.3s;
}

.header-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
    width: 100%;
    height: 100%;
    /* color: var(--header-link-hover); */
    background-color: var(--header-link-hover-bg);
    transform: scale(40%);
    opacity: 0;
    border-radius: 8px;
    transition: all 300ms;
}

.header-links:hover{
    color: var(--header-link-hover);
}

.header-links:hover::after {
    transform: scale(100%);
    opacity: 1;
}

.hero-section{
    background-image: var(--hero-bg-img);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.hero-bg-gradient{
    /* background: linear-gradient(180deg, var(--hero-gradient) 13%, rgba(0,0,0,0.258140756302521) 87%); */
    background: linear-gradient(180deg, var(--hero-gradient) 23%, rgba(0,0,0,0) 87%, var(--hero-gradient) 97%);
}


.gradient-text{
    background: rgb(215,215,215);
    background: linear-gradient(90deg, rgba(215,215,215,1) 18%, rgba(136,136,136,1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.purple-bg-grad{
    background: rgb(126,34,206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 10px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover{

}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    min-width: 100px;
    border: 1px solid #979797;
    transition: border 0.3s;
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

/* ------------------- scrollbar ------------- */
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 25px;
/* background: #f7f4ed; */
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 25px;
}


/* ---------------- dropdown --------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    outline: none;
    /* background-color: #000; */
    /* border: 1px solid #ccc; */
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--dropdown-bg);
    /* border: 1px solid #c9c9c9; */
    list-style-type: none;
    padding: 0;
    width: 100%;
    left: 0px;
    /* top: 105%; */
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: var(--dropdown-hover-bg);
}

/* -------------- carousel ------------------*/
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ------ animated border ------- */

.animated-border {
    position: relative;
    overflow: visible;
}


.animated-border::after{
    content: '';
    position: absolute;
    top: 0px; 
    left: -100%; 
    width: 30%;
    height: 100%;
    border-radius: inherit; 
    /* background: linear-gradient(#6366f1 23%, rgba(124,190,255,0) 87%); */
    background-color: #6366f1;
    background-repeat: no-repeat;
    /* background-size: 200% 200%; */
    background-position: 0% 0%;
    filter: blur(1.5rem);
    opacity: 0.8;
    box-shadow: inset 0px 0px 20px 5px #6366f1;
    /* transform: rotate(90deg); */
    z-index: -2;
    pointer-events: none;
    animation: slide 10s ease-in-out infinite;
   
}

.animated-border::before{
    filter: blur(1.5rem);
    opacity: 0.3;
    will-change: transform;
}

@keyframes slide{
    0% {
        left: -100%; /* Start completely outside the left edge */
        right: 100%; /* End completely outside the right edge */
    }
   
    100% {
        left: 100%; /* Move completely outside the right edge */
        right: -100%; /* End completely outside the left edge */
    }
}

.footer-link{
    width: -moz-fit-content;
    width: fit-content;
    color: var(--footer-link);
    transition: color 0.3s;
}

.footer-link:hover{
    color: var(--footer-link-hover);
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: var(--faq-h-text);
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 5px;
    color: var(--faq-content-text);
    overflow: hidden;
    background-color: transparent;
    transition: max-height 0.4s, padding 0.4s;
}


/* Updated header-links for dynamic text color */
/* Updated header-links for bolder text */
.header-links {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
    padding: 8px 15px;
    z-index: 2;
    cursor: pointer;
    color: var(--primary-text-color); /* Black in light mode, white in dark mode */
    font-weight: 500; /* Bolder font weight */
    transition: background-color 0.3s, color 0.3s;
}

.header-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--header-link-hover-bg);
    transform: scale(40%);
    opacity: 0;
    border-radius: 8px;
    transition: all 300ms;
}


/* Update mobile collapsible header for solid color, full width, and no border radius */
@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        top: 60px;
        left: 0px;
        flex-direction: column;
        opacity: 0;
        height: 0vh;
        min-height: 0vh;
        width: 100vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: center;
        text-align: center;
        background: #ffffff; /* Solid white for light mode */
        border-radius: 0; /* No border radius */
        box-shadow: 0px 2px 3px 2px #9f9f9f7c;
    }
    .tw-dark header .collapsible-header {
        background: #000000; /* Solid black for dark mode */
    }
}

/* Style for logo link */
.logo-link {
    margin-left: 1rem; /* Matches tw-ml-4, adds left margin */
    color: var(--primary-text-color); /* Black in light mode, white in dark mode */
    transition: color 0.3s; /* Smooth color transition for mode changes */
}

/* Updated style for logo text with modern font */
.logo-text {
    color: var(--primary-text-color); /* Black in light mode, white in dark mode */
    font-family: 'Poppins', sans-serif; /* Modern, logo-friendly font */
    font-weight: 500;
    font-size: 24px;
}

.accent-gradient {
    background: linear-gradient(90deg, #9b5de5, #7b2ff7); /* purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 18px;
}

/* Add this to your CSS file - CRITICAL FIX */
@media (min-width: 1024px) {
    header .collapsible-header {
        opacity: 1 !important;
        height: auto !important;
        display: flex !important;
    }
}


/* ---------------- Theme-aware table fixes ---------------- */

/* Make wrapper follow theme and use the theme border color */
.fi-wrapper {
  background-color: var(--bg-color) !important;
  border: 1px solid var(--hr-color, #d1d5db) !important;
}

/* Force table to use wrapper background (override tw-bg-white) */
.fi-table {
  background-color: transparent !important; /* wrapper provides bg */
  color: var(--primary-text-color) !important;
}

/* Header styling */
.fi-table thead th {
  background-color: var(--dropdown-bg, #f3f4f6) !important; /* subtle header */
  color: var(--primary-text-color) !important;
  font-weight: 600;
}

/* Body cells: transparent so wrapper bg shows through, readable text */
.fi-table tbody td {
  background-color: transparent !important;
  color: var(--faq-content-text, #1e1e1e) !important;
  padding: 1rem !important;         /* consistent spacing */
  vertical-align: middle;
}

/* Grid lines (light mode) */
.fi-table th,
.fi-table td {
  border-right: 1px solid var(--hr-color, #d1d5db) !important;
  border-bottom: 1px solid var(--hr-color, #d1d5db) !important;
}

/* Remove right/bottom line on outer edges so wrapper border is clean */
.fi-table th:last-child,
.fi-table td:last-child { border-right: none !important; }
.fi-table tbody tr:last-child td { border-bottom: none !important; }

/* Corners match the wrapper */
.fi-table thead th:first-child { border-top-left-radius: 0.75rem; }
.fi-table thead th:last-child  { border-top-right-radius: 0.75rem; }
.fi-table tbody tr:last-child td:first-child  { border-bottom-left-radius: 0.75rem; }
.fi-table tbody tr:last-child td:last-child   { border-bottom-right-radius: 0.75rem; }

/* -------- Dark mode overrides (uses your .tw-dark) -------- */
.tw-dark .fi-wrapper {
  background-color: var(--bg-color) !important;    /* already set, but explicit */
  border: 1px solid #2f2f2f !important;
}

/* Dark header a touch lighter than card bg for contrast */
.tw-dark .fi-table thead th {
  background-color: rgba(255,255,255,0.03) !important; /* subtle lift */
  color: var(--primary-text-color) !important;
}

/* Dark cell borders and text */
.tw-dark .fi-table th,
.tw-dark .fi-table td {
  border-right: 1px solid rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.03) !important;
  color: var(--primary-text-color) !important;
}

/* Make check icons clearer and vertically centered */
.fi-table i[class*="bi-"], .fi-table .icon {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  font-size: 1.1rem;
}

/* Optional: slightly reduce row height if it looks too tall */
.fi-table tbody td { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }

/* Safety: ensure header text remains visible if your header bg is near-white */
.fi-table thead th { opacity: 0.95; }

/* If your site applies table {border-collapse: collapse} globally, ensure border-separate on this table */
.fi-table { border-collapse: separate !important; border-spacing: 0 !important; }


/* FORCE HEADER COLORS IN LIGHT MODE */
.fi-table thead th {
  background-color: #f3f4f6 !important; /* Soft light gray */
  color: #1f1f1f !important;            /* readable dark text */
}

/* FORCE HEADER COLORS IN DARK MODE */
.tw-dark .fi-table thead th {
  background-color: rgba(255, 255, 255, 0.06) !important; /* subtle light gray tint */
  color: #ffffff !important;                              /* strong white text */
}


.pro-badge {
  background-color: #ffd269 !important;
  color: #070707 !important;
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0 !important;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  left: 0;
}


.starter-badge {
  background-color: #e1b3fe !important;
  color: #070707 !important;
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0 !important;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  left: 0;
}

.free-badge {
  background-color: #eeeeee !important;
  color: #070707 !important;
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0 !important;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  position: absolute;
  top: 0;
  left: 0;
}



/* ---------- Force header to respect theme (put this LAST in your CSS) ---------- */

/* Remove any bg applied to thead rows/cells from Tailwind utilities */
.fi-wrapper .fi-table thead tr[class*="tw-bg"],
.fi-wrapper .fi-table thead th[class*="tw-bg"],
.fi-wrapper .fi-table thead tr[style*="background"],
.fi-wrapper .fi-table thead th[style*="background"] {
  background: none !important;
}

/* Light mode header (explicit) */
html:not(.tw-dark) .fi-wrapper .fi-table thead tr,
html:not(.tw-dark) .fi-wrapper .fi-table thead th {
  background-color: #f3f4f6 !important;   /* soft light gray */
  color: #1f1f1f !important;              /* dark header text */
  -webkit-text-fill-color: #1f1f1f !important;
  text-shadow: none !important;
}

/* Dark mode header (explicit) */
html.tw-dark .fi-wrapper .fi-table thead tr,
html.tw-dark .fi-wrapper .fi-table thead th,
.tw-dark .fi-wrapper .fi-table thead tr,
.tw-dark .fi-wrapper .fi-table thead th {
  background-color: rgba(255,255,255,0.04) !important; /* subtle tint for contrast */
  color: #ffffff !important;                            /* bright header text */
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}

/* Ensure header children inherit color (icons/text inside) */
.fi-wrapper .fi-table thead th * { color: inherit !important; }

/* Make sure header sits above any pseudo-layer */
.fi-wrapper .fi-table thead tr,
.fi-wrapper .fi-table thead th { z-index: 2 !important; position: relative !important; }

/* Keep header corners and border colors consistent with theme */
.fi-wrapper .fi-table thead th:first-child { border-top-left-radius: 0.75rem !important; }
.fi-wrapper .fi-table thead th:last-child  { border-top-right-radius: 0.75rem !important; }
html:not(.tw-dark) .fi-wrapper .fi-table thead th { border-color: var(--hr-color, #d1d5db) !important; }
html.tw-dark .fi-wrapper .fi-table thead th,
.tw-dark .fi-wrapper .fi-table thead th { border-color: rgba(255,255,255,0.06) !important; }

/* Safety: override any opacity utility hiding header text */
.fi-wrapper .fi-table thead th { opacity: 1 !important; }

/* If you want to remove the original tw-bg-* class from the markup (recommended) */
/* change <tr class="tw-bg-gray-100 dark:tw-bg-gray-800"> to simply <tr> (cleaner) */


/*blog -----------------------------------------------------------------------------------------------*/
/* ---------------- BLOG ARTICLE TYPOGRAPHY ---------------- */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

.blog-article {
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  color: var(--primary-text-color);
  max-width: 850px;
  margin: 0 auto;
}

.blog-article h1,
.blog-article h2,
.blog-article h3,
.blog-article h4,
.blog-article h5,
.blog-article h6 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--primary-text-color);
}

.blog-article h1 {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-top: 6rem;
}

.blog-article h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-top: 2rem;
}

.blog-article h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.blog-article p {
  margin: 1rem 0;
  font-size: 1.05rem;
  color: var(--faq-content-text);
}

.blog-article ul,
.blog-article ol {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
  font-size: 1.05rem;
  color: var(--faq-content-text);
}

.blog-article ul li,
.blog-article ol li {
  margin-bottom: 0.6rem;
}

.blog-article strong {
  font-weight: 600;
  color: var(--primary-text-color);
}

.blog-article blockquote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  border-left: 4px solid var(--hr-color);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--faq-content-text);
  opacity: 0.9;
}

.blog-article img {
  width: 100%;
  border-radius: 1rem;
  margin: 1.5rem 0 2.5rem 0; /* 👈 adds more bottom margin */
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}
.blog-article #thumbnail {
  margin-bottom: 6rem !important;
}


.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.blog-article th,
.blog-article td {
  border: 1px solid var(--hr-color);
  padding: 0.75rem;
}

.blog-article th {
  background-color: var(--dropdown-bg);
  font-weight: 600;
  text-align: left;
}

.blog-article hr {
  border: none;
  border-top: 1px solid var(--hr-color);
  margin: 2rem 0;
}

/* Author Box Wrapper */
.blog-article .author-box {
  display: flex;
  flex-direction: column; /* column: top author-info, bottom social-links */
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Row layout for image + details */
.blog-article .author-info {
  display: flex;
  flex-direction: column;        /* 👈 image left, text right */
  align-items: center;        /* vertically center both */
  justify-content: center;    /* horizontally center entire row */
  gap: 1rem;                  /* space between image & text */
  text-align: center;
  width: 100%;
  max-width: 700px;           /* keeps layout centered and neat */
}

/* Author image */
.blog-article .author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.blog-article .author-details {
  display: flex;
  flex-direction: column;
  align-items: flex;
  gap: 0;                 /* no flex gap */
  line-height: 1;         /* compact stacking */
}

.blog-article .author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-text-color);
  line-height: 1;         /* ✅ removes vertical padding around text */
  margin: 0;              /* ✅ eliminates block margin */
  margin-bottom: 12px;
  padding: 0;
}

.blog-article .author-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--faq-content-text);
  opacity: 0.9;
  line-height: 1;         /* ✅ matches top line exactly */
  margin: 0;              /* ✅ no vertical spacing */
  padding: 0;
}


/* Social links under the author info */
.blog-article .social-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.blog-article .social-links a {
  font-size: 0.95rem;
  color: var(--faq-content-text);
  transition: color 0.2s;
}

.blog-article .social-links a:hover {
  color: var(--btn-bg);
}


/* ---------------- ICON STYLES FOR PROS / CONS LISTS ---------------- */

.blog-article .list-pros,
.blog-article .list-cons {
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-left: 0;
}

.blog-article .list-pros li,
.blog-article .list-cons li {
  position: relative;
  padding-left: 2rem; /* space for the icon */
  margin-bottom: 0.75rem;
}

/* ✅ Pros – green check icons */
.blog-article .list-pros li::before {
  content: "\f26e"; /* Bootstrap Icons: check-circle-fill */
  font-family: "bootstrap-icons";
  color: #16a34a; /* green */
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.15rem;
}

/* ❌ Cons – red cross or warning icon */
.blog-article .list-cons li::before {
  content: "\f623"; /* Bootstrap Icons: exclamation-triangle-fill */
  font-family: "bootstrap-icons";
  color: #dc2626; /* red */
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.15rem;
}

/* Optional: make text spacing balanced */
.blog-article .list-pros li,
.blog-article .list-cons li {
  line-height: 1.6;
  font-size: 1.05rem;
  color: var(--faq-content-text);
}


/*-----------------------------------------------------------------------------------------------------*/
/* Light mode */
.card {
  border: 1px solid #ededed; /* visible border in light mode */
  transition: border-color 0.3s ease;
}

/* Dark mode */
.tw-dark .card {
  border: 1px solid rgba(255, 255, 255, 0.1); /* visible border in dark mode */
}
