/* ptmpgb Widget Display Styles */

.ptmpgb-widget-wrapper {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Avoid forcing fixed widths while keeping iframes responsive */
.ptmpgb-widget-wrapper iframe {
    max-width: 100%;
    height: auto;
}

/* Optional alignment helpers */
.ptmpgb-widget-align-left {
    display: flex;
    justify-content: flex-start;
}

.ptmpgb-widget-align-center {
    display: flex;
    justify-content: center;
}

.ptmpgb-widget-align-right {
    display: flex;
    justify-content: flex-end;
}

/* Widget positioning styles */
.ptmpgb-widget-top {
    margin-bottom: 30px;
}

.ptmpgb-widget-middle {
    margin: 30px 0;
}

.ptmpgb-widget-bottom {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .ptmpgb-widget-top {
        margin-bottom: 20px;
    }

    .ptmpgb-widget-middle {
        margin: 20px 0;
    }

    .ptmpgb-widget-bottom {
        margin-top: 20px;
    }
}
