/* Design Week Popup Styles */
body, html {
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.dwp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* High z-index to be on top of everything */
}

.dwp-popup-container {
    background-color: #FFFFFF;
    color: #000000;
    padding: 25px;
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
}

.dwp-popup-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.dwp-popup-container h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.5rem;
}

.dwp-popup-container p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.dwp-popup-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.dwp-popup-footer a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

.dwp-popup-footer a:hover {
    text-decoration: underline;
}

.dwp-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: normal;
    color: #000000;
    cursor: pointer;
    line-height: 1;
}