html {
    scroll-behavior: smooth;
}

body {
    background-color: white;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
    font-family: 'Urbanist', sans-serif;
}

.slide-content {
    font-family: 'Inter', sans-serif;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto 2rem;
    overflow: hidden;
    min-height: 300px;
}

@media (min-width: 768px) {
    .slide-content {
        aspect-ratio: 16 / 9;
    }
}

.slide-content h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content h3 {
    font-size: 1.75em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content h4 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content h5 {
    font-size: 1.25em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content h6 {
    font-size: 1em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.slide-content p {
    margin-bottom: 1em;
}

.slide-content ul,
.slide-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.slide-content li {
    margin-bottom: 0.5em;
    position: relative;
}

.slide-content ul li::before {
    content: '•';
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.slide-content ol {
    counter-reset: item;
}

.slide-content ol li {
    counter-increment: item;
}

.slide-content ol li::before {
    content: counter(item) ".";
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
    position: absolute;
    left: 0;
}

@media (max-width: 767px) {
    .slide-content h1 {
        font-size: 1.8em;
    }

    .slide-content h2 {
        font-size: 1.5em;
    }

    .slide-content h3 {
        font-size: 1.3em;
    }

    .slide-content h4 {
        font-size: 1.2em;
    }

    .slide-content h5 {
        font-size: 1.1em;
    }

    .slide-content h6 {
        font-size: 1em;
    }

    .slide-content p,
    .slide-content li {
        font-size: 0.9em;
    }
}

.spinner {
    border: 2px solid rgba(0, 0, 0, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-left-color: #fff;
    animation: spin 1s ease infinite;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gradient-1 {
    background: linear-gradient(135deg, #8B9FEF, #9F7AA5);
}

.gradient-2 {
    background: linear-gradient(135deg, #F4B8B8, #FFE6E8);
}

.gradient-3 {
    background: linear-gradient(135deg, #7FEBC3, #5CB8E4);
}

.gradient-4 {
    background: linear-gradient(135deg, #F9D48B, #FFBEA3);
}

.gradient-5 {
    background: linear-gradient(135deg, #FFB5B5, #FFE2D9);
}

.gradient-6 {
    background: linear-gradient(135deg, #C3B4E3, #FFD5F3);
}

.gradient-7 {
    background: linear-gradient(135deg, #FFF2E2, #FFD5BD);
}

.gradient-8 {
    background: linear-gradient(135deg, #A8F7D0, #B5E4F7);
}

.gradient-9 {
    background: linear-gradient(135deg, #C7D8FF, #FFB3B5);
}

.gradient-10 {
    background: linear-gradient(135deg, #FFE1B7, #E5B0F3);
}

.gradient-11 {
    background: linear-gradient(135deg, #E9D6FF, #B8DDFF);
}

.gradient-12 {
    background: linear-gradient(135deg, #FFB8F7, #FFB5BC);
}

.gradient-13 {
    background: linear-gradient(135deg, #8CCDFF, #B3F7FF);
}

.gradient-14 {
    background: linear-gradient(135deg, #96F5B7, #8BFFE5);
}

div#language-dropdown {
    max-height: 400px;
    overflow: auto;
}

button#downloadPPT {
    margin: auto;
}

h1.text-xl.sm\:text-2xl.font-bold {
    display: none;
}

select#bgTheme {
    background: #fff;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-animation {
    animation: slideIn 0.5s ease-out forwards;
}

.fade-animation {
    animation: fadeIn 0.5s ease-out forwards;
}

button.bg-white.text-green-500.py-2.px-6.rounded-full.text-lg.font-semibold.hover\:bg-green-100.transition.duration-300 {
    white-space: nowrap;
}

