:root {
    --pda-primary-color: #034833;
    --pda-secondary-color: #83CD20;
    --pda-secondary-dark: #6da31b;
    --pda-white: #ffffff;
    --pda-light-gray: #f4f4f4;
    --pda-border-color: #ddd;
    --pda-text-color: #333;
    --pda-text-light: #555;

    /* Typography */
    --pda-font-base: 18px;
    --pda-line-height: 1.6;
    --pda-font-family: inherit;

    /* Spacing */
    --pda-spacing-sm: 10px;
    --pda-spacing-md: 20px;
    --pda-spacing-lg: 30px;

    /* Border Radius */
    --pda-radius: 8px;
    --pda-radius-lg: 12px;
}

/* Base Styles Scoped to Wrapper */
.pda-wrapper {
    box-sizing: border-box;
    font-size: var(--pda-font-base) !important;
    color: var(--pda-text-color);
    line-height: var(--pda-line-height);
    font-family: var(--pda-font-family);
    -webkit-font-smoothing: antialiased;
}

/* Reset Box Sizing inside wrapper */
.pda-wrapper *,
.pda-wrapper *::before,
.pda-wrapper *::after {
    box-sizing: inherit;
}

/* Scoped Typography */
.pda-wrapper h1,
.pda-wrapper h2,
.pda-wrapper h3,
.pda-wrapper h4,
.pda-wrapper h5,
.pda-wrapper h6 {
    font-family: var(--pda-font-family);
    font-weight: 700;
    color: var(--pda-primary-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pda-wrapper h1 {
    font-size: 3.5rem;
}

.pda-wrapper h2 {
    font-size: 3rem;
}

.pda-wrapper h3 {
    font-size: 2.2rem;
}

.pda-wrapper h4 {
    font-size: 2rem;
}

.pda-wrapper h5 {
    font-size: 1.5rem;
}

.pda-wrapper h6 {
    font-size: 1.2rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .pda-wrapper h1 {
        font-size: 2.5rem;
    }

    .pda-wrapper h2 {
        font-size: 2rem;
    }

    .pda-wrapper h3 {
        font-size: 1.75rem;
    }

    .pda-wrapper h4 {
        font-size: 1.5rem;
    }
}

.pda-wrapper p {
    margin-bottom: 1.5rem !important;
    font-size: 1em;
}

.pda-wrapper a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--pda-primary-color);
}

.pda-wrapper a:hover {
    color: var(--pda-secondary-color);
}

.pda-wrapper a:focus-visible {
    outline: 2px solid var(--pda-primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.pda-wrapper ul,
.pda-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.pda-wrapper li {
    margin-bottom: 0.5rem;
}

.pda-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Grid System */
.pda-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.pda-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.pda-col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

.pda-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

.pda-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .pda-col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .pda-text-md-right {
        text-align: right !important;
    }

    .pda-d-md-block {
        display: block !important;
    }

    .pda-d-md-none {
        display: none !important;
    }

    .pda-d-md-flex {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .pda-col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utilities */
.pda-align-center {
    align-items: center;
}

.pda-align-top {
    align-items: flex-start;
}

.pda-text-center {
    text-align: center;
}

.pda-text-left {
    text-align: left;
}

.pda-d-flex {
    display: flex;
}

.pda-justify-content-end {
    justify-content: flex-end;
}

.pda-justify-content-center {
    justify-content: center;
}

.pda-justify-content-between {
    justify-content: space-between;
}

.pda-align-items-center {
    align-items: center;
}

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

.pda-flex-shrink-0 {
    flex-shrink: 0;
}

.pda-w-100 {
    width: 100%;
}

.pda-h-100 {
    height: 100%;
}

.pda-mb-1 {
    margin-bottom: 0.25rem;
}

.pda-mb-2 {
    margin-bottom: 0.5rem;
}

.pda-mb-3 {
    margin-bottom: 1rem;
}

.pda-mb-4 {
    margin-bottom: 1.5rem;
}

.pda-mt-1 {
    margin-top: 0.25rem;
}

.pda-mt-2 {
    margin-top: 0.5rem;
}

.pda-mt-3 {
    margin-top: 1rem;
}

.pda-mt-4 {
    margin-top: 1.5rem;
}

.pda-my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.pda-my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.pda-my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pda-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pda-p-0 {
    padding: 0 !important;
}

.pda-p-2 {
    padding: 0.5rem !important;
}

.pda-p-3 {
    padding: 1rem !important;
}

.pda-py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pda-pt-5 {
    padding-top: 3rem;
}

.pda-pr-4 {
    padding-right: 1.5rem;
}

.pda-mr-1 {
    margin-right: 0.25rem;
}

.pda-ml-2 {
    margin-left: 0.5rem;
}

.pda-d-block {
    display: block;
}

.pda-d-none {
    display: none;
}

/* Colors Helpers */
.pda-primary-color {
    color: var(--pda-primary-color);
}

.pda-text-primary {
    color: var(--pda-primary-color) !important;
}

/* Responsive Video */
.pda-video-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 */
    background: #000;
    border-radius: var(--pda-radius);
}

.pda-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

/* Header & Single PDA */
.pda-single-container {
    min-height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pda-single-container .pda-header {
    background-color: #fcecf4;
    border-radius: var(--pda-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    padding: 3rem !important;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pda-single-container .pda-header {
        padding: 1rem !important;
    }
}

.pda-single-container .pda-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(3, 72, 51, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.pda-single-container .pda-header>div {
    z-index: 1;
}

/* Breadcrumb */
.pda-breadcrumb {
    background-color: var(--pda-white);
    color: var(--pda-secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pda-breadcrumb:hover {
    background-color: var(--pda-primary-color);
    color: var(--pda-white);
    transform: translateX(-5px);
}

/* Category Buttons */
.pda-category-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .pda-category-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pda-category-buttons {
        grid-template-columns: 1fr;
    }
}

.pda-category-btn,
.pda-btn-primary {
    width: 100%;
    padding: 20px;
    background-color: var(--pda-secondary-color);
    color: var(--pda-white);
    border: none;
    border-radius: var(--pda-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
    text-align: left;
    transition: all 0.3s ease;
}

.pda-category-btn:hover,
.pda-category-btn:focus {
    background-color: var(--pda-primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pda-category-btn:hover h4,
.pda-category-btn:focus h4 {
    color: white;
}

.pda-category-btn-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.177);
    border-radius: 50px;
    padding: 5px;
}

.pda-img-cover {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.pda-default-icon {
    width: 90px;
    height: 90px;
    background-color: var(--pda-light-gray);
    color: var(--pda-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
}

.pda-category-btn p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: white;
}

/* Modal System (Namespaced) */
.pda-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-x: hidden;
    overflow-y: hidden;
    /* Prevent body scroll when modal is open */
    transition: opacity 0.3s ease;
}

.pda-modal.pda-show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.pda-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    background-color: #fff;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.pda-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    /* Ensure it doesn't exceed dialog */
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    background: #fff;
}

/* Close Button Style */
.pda-btn-close {
    background-color: var(--pda-primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
    transition: background-color 0.3s ease;
}

.pda-btn-close:hover {
    background-color: var(--pda-secondary-color);
}

.pda-modal-header {
    padding: 1.5rem 3rem;
    border-bottom: 1px solid var(--pda-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    flex-shrink: 0;
    /* Prevent header from shrinking */
}

/* ... title and close button ... */

.pda-modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    flex-grow: 1;
    padding-bottom: 2rem;
    position: relative;
    min-height: 0;
}

.pda-modal-footer {
    padding: 1rem 3rem;
    background: var(--pda-light-gray);
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f1f1f1;
    flex-shrink: 0;
    /* Prevent footer from shrinking */
}

.pda-btn-secondary {
    background-color: var(--pda-primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 500;
}

.pda-btn-secondary:hover {
    background-color: #5a6268;
}

/* Themes Menu in Modal */
/* Sticky Menu Wrapper */
.pda-sticky-menu-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: trasparent;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    
    /* Full width relative to modal body padding */
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 30px);
    display: flex;
    align-items: center;
}

.pda-modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3%;
    flex-grow: 1;
    position: relative;
    min-height: 0;
}

/* Scroll Arrows */
.pda-scroll-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    background: none;
    display: none;
}

.pda-scroll-arrow-left {
    left: 10px;
}

.pda-scroll-arrow-right {
    right: 10px;
}

.pda-scroll-arrow {
    background: var(--pda-secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    /* Smaller size */
    height: 24px;
    /* Smaller size */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pda-scroll-arrow svg {
    width: 12px;
    height: 12px;
}


.pda-tema-list-menu {
    border-bottom: none;
    background: transparent;
    padding: 0 10px 1rem;
    /* Less padding to start */
    margin-bottom: 0px;
    margin-left: 0;
    margin-right: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    position: relative;
    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--pda-secondary-color) #f0f0f0;
    flex-grow: 1;
    /* Take available space */
}

.pda-tema-list-menu::-webkit-scrollbar {
    height: 6px;
}

.pda-tema-list-menu::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.pda-tema-list-menu::-webkit-scrollbar-thumb {
    background-color: var(--pda-secondary-color);
    border-radius: 3px;
}

.pda-tema-item-menu {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    padding: 10px 20px;
    color: white;
    background: var(--pda-primary-color);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.pda-tema-item-menu:hover {
    background-color: var(--pda-secondary-color);
    color: white;
}

.pda-tema-item-menu.active {
    background-color: var(--pda-secondary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Content Area inside Modal */
.pda-tema-container {
    padding: 0 2rem;
max-width: 900px;
margin: 0 auto;
}

.pda-tema-item {
    display: none;
    padding: 25px;
    border-radius: 4px;
    width: 100%;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.pda-tema-item.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: pdaFaceInUp 0.4s ease forwards;
}

@keyframes pdaFaceInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pda-tema-item h4 {
    color: var(--pda-primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Tema Content Typography override */
.pda-tema-content {
    
    color: #555;
    line-height: 1.7;
}

.pda-tema-content p {
font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.pda-tema-content li {
    margin-bottom: 0.5rem;
    text-align: justify;
}

.pda-tema-content img {
    border-radius: 8px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
}

/* Scroll Arrows */
.pda-scroll-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    display: none;
    /* Hidden by default until JS enables */
}

.pda-scroll-arrow-left {
    left: 0;
    padding-left: 10px;
    /* Space from edge */
}

.pda-scroll-arrow-right {
    right: 0;
    padding-right: 10px;
    /* Space from edge */
}

.pda-scroll-arrow {
    background: var(--pda-secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pda-scroll-arrow:hover {
    background: var(--pda-primary-color);
    transform: scale(1.1);
}

/* Ensure list menu has space for arrows */
.pda-tema-list-menu {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    /* Space for arrows */

    /* Gradient Mask for fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

/* Preloader */

/* Preloader */
.pda-preloader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 8px solid #E4E4ED;
    border-right-color: #087040;
    animation: pdaSpin 1s infinite linear;
    margin: auto;
    /* Centers in flex container (modal) */
}

.pda-subtopic-preloader {
    margin: 50px auto;
    /* specific spacing for subtopics */
}

@keyframes pdaSpin {
    to {
        transform: rotate(1turn)
    }
}

.pda-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Search Form & Filters */
.pda-search-form .pda-input-group {
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: stretch;
    padding: 0px;
}

.pda-search-form .pda-form-control {
    border: none;
    box-shadow: none;
    outline: none;
    padding-left: 20px;
    height: 45px;
    width: 100%;
}

.pda-search-form .pda-input-group-append {
    background-color: #f1f3f5;
    display: flex;
    align-items: stretch;
padding: 0px;
}

.pda-btn-search {
    background-color: var(--pda-secondary-color);
    color: white;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    padding: 0 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.pda-btn-search:hover {
    background-color: var(--pda-primary-color);
}

.pda-btn-outline-primary {
    border: 1px solid var(--pda-secondary-color);
    color: var(--pda-primary-color);
    background: white;
    border-radius: 4px;
    padding: 8px 20px;
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pda-btn-outline-primary:hover,
.pda-btn-outline-primary.active {
    background-color: var(--pda-primary-color);
    border-color: var(--pda-secondary-color);
    color: white;
}

/* PDA List Items (Cards) */
.pda-item {
    display: flex;
    flex-direction: column;
}

.pda-item article,
.pda-item .pda-card {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pda-item .pda-card {
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    padding: 0.5rem;
}

.pda-item .pda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pda-rounded-circle {
    border-radius: 50% !important;
}

.pda-img-cover {
    object-fit: cover !important;
}

.pda-cta-text {
    color: var(--pda-secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0px;
    margin-bottom: 15px;
    display: block;
}

.pda-item:hover .pda-cta-text {
    color: var(--pda-primary-color);
}

/* Pagination */
.pda-pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.pda-pagination-container a,
.pda-pagination-container span {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--pda-text-color);
}

.pda-pagination-container .current {
    background-color: var(--pda-secondary-color);
    color: white;
    border-color: var(--pda-secondary-color);
}

/* Spacer */
.pda-spacer-15vh {
    height: 15vh;
}

/* Survey Styles */
.pda-survey-container {
    background: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.pda-survey-title {
    color: var(--pda-primary-color);
    margin-bottom: 10px;
}

.pda-survey-question {
    margin-bottom: 2rem;
}

.range-container {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Standardized Range Input Styles */
.pda-range-input {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 10px;
    /* Specified height */
    background: #e9ecef;
    /* Grey background */
    border-radius: 5px;
    outline: none;
    /* Remove outline */
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s;
    /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    margin: 10px 0;
    display: block;
}

/* Mouse-over effects */
.pda-range-input:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.pda-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    border-radius: 50%;
    /* Green background */
    background: var(--pda-primary-color);
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    margin-top: -8px;
    /* Push thumb up to center on track if track height < thumb height */
    position: relative;
    z-index: 2;
}

.pda-range-input::-moz-range-thumb {
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    /* Slider handle height */
    border-radius: 50%;
    /* Green background */
    background: var(--pda-primary-color);
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border: none;
}

/* Track styles for Webkit */
.pda-range-input::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #e9ecef;
    border-radius: 5px;
}

/* Track styles for Moz */
.pda-range-input::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #e9ecef;
    border-radius: 5px;
}

.slider-value {
    background: var(--pda-primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    min-width: 35px;
    text-align: center;
}

#pda-print-overlay {
    display: none;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    /* Make modal printable to show its content and the survey */
    .pda-modal.pda-show {
        position: absolute !important;
        height: auto !important;
        overflow: visible !important;
        background: white !important;
    }

    .pda-modal-dialog,
    .pda-modal-content,
    .pda-modal-body,
    .pda-modal-body-content {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .pda-tema-list-menu,
    .pda-scroll-arrows,
    .pda-modal-footer,
    .pda-btn-close {
        display: none !important;
    }

    .pda-survey-results {
        margin: 20px 0;
        padding: 20px;
        background: white !important;
        color: black !important;
    }

    /* Print exclusively the survey results when button is clicked */
    body.pda-print-only-results {
        visibility: hidden;
    }

    body.pda-print-only-results #pda-print-overlay,
    body.pda-print-only-results #pda-print-overlay * {
        visibility: visible;
    }

    body.pda-print-only-results #pda-print-overlay {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        background: white !important;
    }

    .pda-all-results li {
        margin-bottom: 5px;
        border-bottom: 1px dotted #ccc;
        list-style: none;
    }

    .pda-all-results ul {
        padding-left: 0;
    }
}