.wds-demo-showcase-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr);
    gap: 20px; */
}

/* @media (max-width: 900px) {
    .wds-demo-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wds-demo-showcase-grid {
        grid-template-columns: 1fr;
    }
} */
.wds-demo-item {
    text-align: center;
    cursor: pointer;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}
.wds-demo-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.wds-demo-item img {
    width: 100%;
    border-radius: 5px;
}
.wds-view-demo-button {
    margin-top: 10px;
    padding: 8px 16px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Modal overlay */
.wds-demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal header (tabs/icons + close) */
.wds-demo-modal .wds-modal-header {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 15px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    border-radius: 10px 10px 0 0;
    box-sizing: border-box;
}

.wds-modal-header .wds-tab-icon {
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
    color: #aaa;
}
.wds-modal-header .wds-tab-icon.active {
    color: #4dabf7;
}
.wds-modal-close {
    margin-left: auto;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Frame container mimicking a device */
.wds-device-frame {
    width: 100%;
    max-width: 1200px;
    background: #000;
    border-radius: 0 0 12px 12px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Fake screen (iframe wrapper) */
.wds-device-screen {
    width: 100%;
    height: 80vh;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
}

/* The actual iframe */
.wds-device-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    margin: 0 auto !important;
}
