.mc-widget-read-more-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    border-top-right-radius: 11px;
}
.mc-widget-read-more-button svg {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 4px;
    top: 4px;
}
.mc-widget-content .mc-widget-value-text {
    font-size: 24px;
    margin-top: 10px;
}
.mc-widget-progress-bar {
    margin-top: 20px;
    padding-bottom: 10px;
}
.mc-widget-progress-bar-frame {
    height: 15px;
    border-radius: 5px;
    position: absolute;
    right: 25px;
    left: 25px;
}
.mc-widget-progress-bar-status {
    border-radius: 5px;
    height: 15px;
    opacity: 0.9;
}
.mc-widget-progress-bar-legend {
    position: absolute;
    right: 0;
    bottom: -18px;
    font-size: 11px;
}
.mc-widget-icon {
    width: 60px;
    height: 60px;
}
.mc-widget-icon svg {
    width: 100%;
    height: 100%;
}
.font-bold {
    font-weight: 500 !important;
}
.fi-header .fi-header-heading {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
}
.select-reduced-padding .choices__inner {
    padding-bottom: 0.150em !important;
}
.subscription-plans-lp-image.image-position-left {
    margin-left: 50px;
}
.subscription-plans-lp-image.image-position-left div {
    background-color: #c4bde8;
    transform: rotate(-2deg);
    position: relative;
    border-radius: 10px;
    padding: 20px;
}
.subscription-plans-lp-image.image-position-left img {
    max-width: 500px !important;
    border-radius: 10px;
    transform: rotate(-3deg);
    position: relative;
    margin-left: -50px;
}
.subscription-plans-lp-image.image-position-right {
    margin-right: 50px;
}
.subscription-plans-lp-image.image-position-right div {
    background-color: #c4bde8;
    transform: rotate(2deg);
    position: relative;
    border-radius: 10px;
    padding: 20px;
}
.subscription-plans-lp-image.image-position-right img {
    max-width: 500px !important;
    border-radius: 10px;
    transform: rotate(3deg);
    position: relative;
    margin-right: -50px;
}
.landing-page-feature-split .fi-in-entry-label {
    font-size: 1.2rem !important;
    margin-bottom: 15px;
}
.landing-page-feature-button {
    margin-top: 30px;
}
.landing-page-feature-button button {
    font-size: 1.2rem !important;
    font-weight: normal;
    padding: 20px 40px;
}
.markers-gallery-radio-button label {
    border: 1px solid rgba(var(--gray-200), 1);
    border-radius: 5px;
    padding: 10px;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    cursor: pointer;
    width: 100px;
    height: 100px;
}
.markers-gallery-radio-button label input {
    display: none;
}
.markers-gallery-radio-button label img {
    width: 80px;
    height: 80px;
}
.markers-gallery-radio-button label:has(input[type="radio"]:checked) {
    border: 2px solid #8571E4;
}
.rounded-md {
    border-radius: 0.375rem; /* 6px */
}
.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}
.flex-wrap {
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.flex-nowrap {
    flex-wrap: nowrap;
}
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
.content-evenly { align-content: space-evenly; }
.content-stretch { align-content: stretch; }
.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.self-baseline { align-self: baseline; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.gap-2 {
    gap: 0.5rem; /* 8px */
}
.pt-4 {
    padding-top: 1rem; /* 16px */
}
.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}
.bg-white {
    background-color: #ffffff;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.py-8 {
    padding-top: 2rem;   /* 32px */
    padding-bottom: 2rem; /* 32px */
}
.border {
    border-width: 1px;
    border-style: solid;
    border-color: currentColor; /* defaults to text color if not overridden */
}

.rounded-lg {
    border-radius: 0.5rem; /* 8px */
}
.border-gray-300 {
    border-color: #D1D5DB; /* Tailwind gray-300 */
}
.transition-all {
    transition-property: all;
}

.duration-500 {
    transition-duration: 500ms;
}

.hover\:border-gray-100:hover {
    border-color: #F3F4F6; /* Tailwind gray-100 */
}

.hover\:bg-gray-100:hover {
    background-color: #F3F4F6; /* Tailwind gray-100 */
}
.p-2 {
    padding: 0.5rem; /* 8px */
}
.text-center {
    text-align: center;
}

.alert-info {
    border-radius: 0.5rem;             /* rounded-lg */
    border-left-width: 4px;            /* border-s-4 (start = left in LTR) */
    padding-left: 1rem;                /* px-4 → left/right padding */
    padding-right: 1rem;
    padding-top: 0.75rem;              /* py-3 */
    padding-bottom: 0.75rem;
    border-left-color: rgb(56 189 248); /* border-sky-400 */
    background-color: rgb(56 189 248 / 0.1); /* bg-sky-400/10 */
    color: rgb(8 47 73);               /* text-sky-950 */
}

/* Dark mode (assuming you toggle .dark on <html> or <body>) */
.dark .alert-info {
    background-color: rgb(14 165 233 / 0.2); /* dark:bg-sky-500/20 */
    color: rgb(243 244 246);                 /* dark:text-sky-100 */
}

/* prose-p:my-0 → remove vertical margins on <p> inside */
.alert-info p {
    margin-top: 0;
    margin-bottom: 0;
}

/* prose-code:[p_&]:bg-sky-600/10 → <code> inside <p> gets background */
.alert-info p code {
    background-color: rgb(2 132 199 / 0.1);
    padding: 0.125rem 0.25rem; /* optional for readability */
    border-radius: 0.25rem;
}

/* Dark version for code background */
.dark .alert-info p code {
    background-color: rgb(255 255 255 / 0.2);
}
/* SUCCESS */
.alert-success {
    border-radius: 0.5rem;                 /* rounded-lg */
    border-left-width: 4px;                /* border-s-4 */
    padding: 0.75rem 1rem;                 /* px-4 py-3 */
    border-left-color: rgb(34 197 94);     /* border-green-500 */
    background-color: rgb(34 197 94 / 0.1);/* bg-green-500/10 */
    color: rgb(20 83 45);                  /* text-green-950 */
}
.dark .alert-success {
    background-color: rgb(34 197 94 / 0.2);/* dark:bg-green-500/20 */
    color: rgb(220 252 231);               /* dark:text-green-100 */
}
.alert-success p { margin: 0; }
.alert-success p code {
    background-color: rgb(22 163 74 / 0.1);/* prose-code */
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}
.dark .alert-success p code {
    background-color: rgb(255 255 255 / 0.2);
}

/* WARNING */
.alert-warning {
    border-radius: 0.5rem;
    border-left-width: 4px;
    padding: 0.75rem 1rem;
    border-left-color: rgb(234 179 8);      /* border-yellow-500 */
    background-color: rgb(234 179 8 / 0.1); /* bg-yellow-500/10 */
    color: rgb(66 32 6);                    /* text-yellow-950 */
}
.dark .alert-warning {
    background-color: rgb(234 179 8 / 0.2); /* dark:bg-yellow-500/20 */
    color: rgb(254 249 195);                /* dark:text-yellow-100 */
}
.alert-warning p { margin: 0; }
.alert-warning p code {
    background-color: rgb(202 138 4 / 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}
.dark .alert-warning p code {
    background-color: rgb(255 255 255 / 0.2);
}

/* DANGER (ERROR) */
.alert-danger {
    border-radius: 0.5rem;
    border-left-width: 4px;
    padding: 0.75rem 1rem;
    border-left-color: rgb(239 68 68);      /* border-red-500 */
    background-color: rgb(239 68 68 / 0.1); /* bg-red-500/10 */
    color: rgb(69 10 10);                   /* text-red-950 */
}
.dark .alert-danger {
    background-color: rgb(239 68 68 / 0.2); /* dark:bg-red-500/20 */
    color: rgb(254 226 226);                /* dark:text-red-100 */
}
.alert-danger p { margin: 0; }
.alert-danger p code {
    background-color: rgb(220 38 38 / 0.1);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}
.dark .alert-danger p code {
    background-color: rgb(255 255 255 / 0.2);
}