/* style.css */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.presentation-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #f1f1f1;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: #007bff;
    width: 0%;
    transition: width 0.3s ease;
}

.content-header {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.slides-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    box-sizing: border-box;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: none !important;
}


/* Thumbnail Styles */
.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.slide-thumbnail {
    width: 200px;
    height: 180px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.slide-thumbnail:hover {
    border-color: #007bff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide-thumbnail.active {
    border-color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
}

.thumbnail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.thumbnail-content h5 {
    text-align: center;
    padding: 10px;
    margin: 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.slide-preview {
    flex: 1;
    overflow: hidden;
    transform: scale(0.25);
    transform-origin: top left;
    width: 400%;
    height: 400%;
pointer-events: none;
}

.slide-preview .slide {
    animation: none;
    box-shadow: none;
    margin: 0;
    padding: 10px;
    min-height: auto;
    background-color: white;
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .slide-thumbnail {
        width: 150px;
        height: 120px;
    }

    .thumbnail-content h5 {
        font-size: 12px;
        padding: 8px;
    }
}

/* Navigasi */
.navigation {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.rounded-circle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#slideIndicator {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.1rem;
}

.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide.active .animate-on-load {
    opacity: 1;
    transform: translateY(0);
}

.typing-container {
    width: 80%;
    max-width: 600px;
}

#typing-text {
    font-size: 24px;
    color: #333;
    border-right: 2px solid #333;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
}

/* Animasi kursor berkedip */
@keyframes blink {
0%, 100% { border-color: transparent; }
50% { border-color: #333; }
}

.typing-cursor {
    animation: blink 0.7s infinite;
}