/**
 * Page 2 Monetizer - Frontend Styles
 */

/* In-Page Push Container */
.p2m-inpage-push {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999998;
    max-width: 400px;
}

/* Mobile Specific */
@media (max-width: 768px) {
    .p2m-inpage-push {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Hide from print */
@media print {
    .p2m-inpage-push {
        display: none !important;
    }
}

/* Performance Optimization */
.p2m-inpage-push {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Screen Reader Only */
.p2m-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
