/* LearnDash Vertical Timeline Styles */
/* Background + Canvas Styling */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  font-family: 'Segoe UI', sans-serif;
}

.ldvt-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

canvas#bubbleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ldvt-wrapper {
  position: relative;
  z-index: 1;
}

/* Reset and Base Styles */
.ldvt-container * {
    box-sizing: border-box;
}

.ldvt-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Course Overview Section */
.ldvt-course-overview {
    display: grid;
    grid-template-columns: 1fr 300px 300px;
    gap: 30px;
    padding: 40px;
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Info Card */
.ldvt-overview-main {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ldvt-course-title {
    font-size: 2.5em;
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-weight: 700;
}

.ldvt-course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.ldvt-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.ldvt-meta-item i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
}

/* Icons */
.ldvt-icon-lessons::before { content: "📚"; }
.ldvt-icon-quizzes::before { content: "📝"; }
.ldvt-icon-duration::before { content: "⏱️"; }
.ldvt-icon-students::before { content: "👥"; }
.ldvt-icon-info::before { content: "ℹ️"; }
.ldvt-icon-certificate::before { content: "🏆"; font-size: 48px; }

.ldvt-course-excerpt {
    font-size: 16px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Action Buttons */
.ldvt-action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ldvt-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ldvt-btn-primary {
    background: #4CAF50;
    color: white;
}

.ldvt-btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.ldvt-btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.ldvt-btn-secondary:hover {
    background: #dee2e6;
}

.ldvt-btn-success {
    background: #28a745;
    color: white;
}

/* Progress Card */
.ldvt-overview-progress {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.ldvt-overview-progress h3 {
    font-size: 1.3em;
    margin: 0 0 25px 0;
    color: #2c3e50;
}

/* Progress Circle */
.ldvt-progress-circle-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.ldvt-progress-circle {
    transform: rotate(-90deg);
}

.ldvt-progress-circle-bg {
    fill: none;
    stroke: #e8f5e8;
    stroke-width: 8;
}

.ldvt-progress-circle-fill {
    fill: none;
    stroke: #4CAF50;
    stroke-width: 8;
    stroke-dasharray: 408;
    stroke-dashoffset: 408;
    transition: stroke-dashoffset 1.5s ease-in-out;
    stroke-linecap: round;
}

/* Animated progress fill */
.ldvt-progress-circle-fill.animate {
    animation: progressFill 2s ease-in-out forwards;
}

@keyframes progressFill {
    from {
        stroke-dashoffset: 408;
    }
    to {
        stroke-dashoffset: var(--progress-offset);
    }
}

.ldvt-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ldvt-progress-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #4CAF50;
}

.ldvt-progress-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

/* 100% completion styling */
.ldvt-progress-circle-container.complete .ldvt-progress-circle-fill {
    stroke: #FFD700;
}

.ldvt-progress-circle-container.complete .ldvt-progress-number {
    color: #FFD700;
}

/* Progress Stats */
.ldvt-progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.ldvt-stat {
    text-align: center;
}

.ldvt-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ldvt-stat-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
}

.ldvt-last-activity {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Certificate Card */
.ldvt-overview-certificate {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.ldvt-overview-certificate h3 {
    font-size: 1.3em;
    margin: 0 0 25px 0;
    color: #2c3e50;
}

.ldvt-certificate-preview {
    text-align: center;
}

.ldvt-certificate-preview p {
    color: #6c757d;
    margin: 15px 0 20px;
}

.ldvt-certificate-progress {
    margin-top: 20px;
}

.ldvt-certificate-progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ldvt-certificate-progress-fill {
    height: 100%;
    background: #4CAF50;
    transition: width 0.5s ease;
}

.ldvt-certificate-progress span {
    font-size: 14px;
    color: #6c757d;
}

/* Modal Styles */
.ldvt-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.ldvt-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.ldvt-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 30px;
    cursor: pointer;
}

.ldvt-modal-close:hover {
    color: #000;
}

.ldvt-modal-content h2 {
    padding: 20px 30px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

/* Tabs */
.ldvt-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    padding: 0 30px;
}

.ldvt-tab-button {
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.ldvt-tab-button:hover {
    color: #2c3e50;
}

.ldvt-tab-button.active {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.ldvt-tab-content {
    display: none;
    padding: 30px;
    max-height: calc(80vh - 200px);
    overflow-y: auto;
}

.ldvt-tab-content.active {
    display: block;
}

.ldvt-tab-content h3 {
    margin-top: 0;
}

/* Instructor Info */
.ldvt-instructor-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.ldvt-instructor-info img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.ldvt-instructor-info h4 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Additional Timeline Animation Styles */
.ldvt-timeline-item {
    opacity: 0;
    transform: translateY(30px);
}

.ldvt-timeline-item.animate-in {
    opacity: 0.7;
    transform: translateY(0);
}

.ldvt-timeline-item.completed.animate-in {
    opacity: 1;
}

/* Enhanced hover effects */
.ldvt-timeline-item:hover .ldvt-timeline-marker {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.ldvt-timeline-item.completed:hover .ldvt-timeline-marker {
    box-shadow: 0 6px 30px rgba(76, 175, 80, 0.6);
}

/* Button loading state */
.ldvt-btn.ldvt-loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.ldvt-btn.ldvt-loading::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Progress pulse animation */
.ldvt-progress-circle-fill {
    animation: progressPulse 2s ease-in-out infinite alternate;
}

@keyframes progressPulse {
    0% {
        stroke-width: 10;
    }
    100% {
        stroke-width: 12;
    }
}

/* Parallax effect for timeline line */
.ldvt-timeline-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: lineGlow 3s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
    }
    100% {
        box-shadow: 0 0 15px rgba(76, 175, 80, 0.6);
    }
}

/* Lessons Roadmap Styles */
.ldvt-lessons-timeline {
    margin-top: 60px;
    padding: 0 40px;
}

.ldvt-timeline-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.ldvt-timeline-header h2 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ldvt-timeline-header p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.ldvt-roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Roadmap Level Styles */
.ldvt-roadmap-level {
    margin-bottom: 40px;
    position: relative;
}

.ldvt-level-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}

.ldvt-level-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ldvt-level-info h3 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

.ldvt-level-info h2 {
    font-size: 24px;
    color: white;
    margin: 5px 0 0 0;
    font-weight: 600;
}

.ldvt-level-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    margin-left: 70px;
}

/* Lesson Card Styles */
.ldvt-lesson-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
    margin-left: 70px;
}

.ldvt-lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(79, 172, 254, 0.4);
}

.ldvt-lesson-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.ldvt-lesson-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.ldvt-lesson-info {
    flex: 1;
}

.ldvt-lesson-info h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.ldvt-lesson-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.ldvt-start-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ldvt-start-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Expandable Content */
.ldvt-lesson-content {
    background: rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ldvt-lesson-card.expanded .ldvt-lesson-content {
    max-height: 500px;
    padding: 20px 25px;
}

.ldvt-lesson-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ldvt-lesson-item:last-child {
    border-bottom: none;
}

.ldvt-lesson-item:hover {
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.ldvt-chevron {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.ldvt-lesson-item.completed .ldvt-chevron {
    color: #4CAF50;
    transform: rotate(90deg);
}

.ldvt-lesson-item.completed {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

/* Connection Line */
.ldvt-connection-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #4facfe, transparent);
    margin: 0 auto;
    position: relative;
    left: 35px;
}

/* Completed State */
.ldvt-roadmap-level.completed .ldvt-level-number {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.ldvt-roadmap-level.completed .ldvt-lesson-card {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    opacity: 0.9;
}

/* Animation States */
.ldvt-roadmap-level {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease forwards;
}

.ldvt-roadmap-level:nth-child(1) { animation-delay: 0.1s; }
.ldvt-roadmap-level:nth-child(2) { animation-delay: 0.2s; }
.ldvt-roadmap-level:nth-child(3) { animation-delay: 0.3s; }
.ldvt-roadmap-level:nth-child(4) { animation-delay: 0.4s; }
.ldvt-roadmap-level:nth-child(5) { animation-delay: 0.5s; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .ldvt-lessons-timeline {
        padding: 0 20px;
    }
    
    .ldvt-level-description,
    .ldvt-lesson-card {
        margin-left: 0;
    }
    
    .ldvt-level-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .ldvt-level-number {
        margin: 0 auto 15px auto;
    }
    
    .ldvt-connection-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ldvt-lesson-header {
        padding: 15px 20px;
    }
    
    .ldvt-lesson-info h4 {
        font-size: 16px;
    }
    
    .ldvt-timeline-header h2 {
        font-size: 2em;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ldvt-course-overview {
        grid-template-columns: 1fr 280px;
    }
    
    .ldvt-overview-certificate {
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .ldvt-course-overview {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .ldvt-overview-certificate {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .ldvt-course-title {
        font-size: 2em;
    }
    
    .ldvt-overview-main {
        padding: 25px;
    }
    
    .ldvt-course-meta {
        gap: 15px;
    }
    
    .ldvt-action-buttons {
        flex-direction: column;
    }
    
    .ldvt-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ldvt-progress-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ldvt-modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* Loading State */
.ldvt-loading {
    opacity: 0.6;
    pointer-events: none;
}

.ldvt-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Congratulations Popup */
.ldvt-congrats-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ldvt-congrats-popup.show {
    opacity: 1;
    visibility: visible;
}

.ldvt-congrats-content {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ldvt-congrats-popup.show .ldvt-congrats-content {
    transform: scale(1);
}

.ldvt-congrats-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.ldvt-congrats-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ldvt-congrats-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.ldvt-congrats-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.ldvt-congrats-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ldvt-congrats-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ldvt-congrats-btn.primary {
    background: #FFD700;
    border-color: #FFD700;
    color: #333;
}

.ldvt-congrats-btn.primary:hover {
    background: #FFC107;
    border-color: #FFC107;
}

.ldvt-congrats-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ldvt-congrats-close:hover {
    color: white;
}

/* Confetti Animation */
.ldvt-confetti {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #FFD700;
    animation: confetti 3s ease-in-out infinite;
}

.ldvt-confetti:nth-child(1) { left: 10%; animation-delay: 0s; background: #FF6B6B; }
.ldvt-confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; background: #4ECDC4; }
.ldvt-confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; background: #45B7D1; }
.ldvt-confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; background: #96CEB4; }
.ldvt-confetti:nth-child(5) { left: 60%; animation-delay: 0.8s; background: #FFEAA7; }
.ldvt-confetti:nth-child(6) { left: 70%; animation-delay: 1s; background: #DDA0DD; }
.ldvt-confetti:nth-child(7) { left: 80%; animation-delay: 1.2s; background: #98D8C8; }
.ldvt-confetti:nth-child(8) { left: 90%; animation-delay: 1.4s; background: #F7DC6F; }

@keyframes confetti {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(720deg);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ldvt-congrats-content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .ldvt-congrats-title {
        font-size: 28px;
    }
    
    .ldvt-congrats-message {
        font-size: 16px;
    }
    
    .ldvt-congrats-actions {
        flex-direction: column;
    }
    
    .ldvt-congrats-btn {
        width: 100%;
        justify-content: center;
    }
}