/* Interactive Demo Module Styles */

.dps-demo-container {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dps-demo-step {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.dps-demo-step.active {
    display: block;
}

.dps-demo-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dps-demo-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.dps-demo-image {
    margin-bottom: 20px;
    max-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.dps-demo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.dps-demo-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.dps-demo-nav button {
    flex: 1;
    padding: 12px 18px;
    background-color: #5777a7;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dps-demo-nav button:hover:not(:disabled) {
    background-color: #b12886;
}

.dps-demo-nav button:disabled {
    background-color: #ccc;
    cursor: default;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
