/* Mobile-first Dark Mode CSS */
:root {
    --proof-bg: #0f1419;
    --proof-text: #e0e0e0;
    --proof-text-secondary: #b0b0b0;
    --proof-card-bg: #1a1f28;
    --proof-card-bg-hover: #222a35;
    --proof-card-border: #2a3142;
    --proof-footer-bg: #151a23;
    --proof-footer-text: #e0e0e0;
    --proof-notes-bg: #1a1f28;
    --proof-notes-border: #2a3142;
    --proof-primary: #4caf50;
    --proof-primary-hover: #66bb6a;
    --proof-accent: #3498db;
    --proof-accent-hover: #5dade2;
    --proof-success: #4caf50;
    --proof-error: #e74c3c;
    --proof-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    --proof-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html, 
body,
body.single-proof_gallery,
.single-proof_gallery {
    background: var(--proof-bg) !important;
    color: var(--proof-text) !important;
}

/* Override WordPress theme styling */
body,
.site,
.site-content,
.content,
main,
article,
.entry-content,
.page-content,
.post-content {
    background: var(--proof-bg) !important;
    color: var(--proof-text) !important;
}

/* Header & Navigation */
.site-header,
.header,
header,
.navbar,
nav {
    background: var(--proof-card-bg) !important;
    color: var(--proof-text) !important;
    border-bottom: 1px solid var(--proof-card-border) !important;
}

.site-header a,
header a,
nav a,
.navbar a {
    color: var(--proof-text) !important;
}

.site-header a:hover,
header a:hover,
nav a:hover,
.navbar a:hover {
    color: var(--proof-primary) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--proof-text) !important;
}

/* Links */
a {
    color: var(--proof-accent) !important;
}

a:hover {
    color: var(--proof-accent-hover) !important;
}

/* Text elements */
p, span, div, li {
    color: var(--proof-text) !important;
}

/* Form elements */
input, textarea, select {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--proof-text) !important;
    border-color: var(--proof-card-border) !important;
}

input:focus, textarea:focus, select:focus {
    background: rgba(76, 175, 80, 0.1) !important;
    border-color: var(--proof-primary) !important;
}

#photo-proofing-app {
    background: var(--proof-bg);
    color: var(--proof-text);
    padding: 16px;
    min-height: 100vh;
    margin: 0;
}

/* Header Section */
.proof-app-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--proof-card-bg);
    border-radius: 12px;
    border: 1px solid var(--proof-card-border);
}

.proof-app-header p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--proof-text);
}

.proof-app-header p.expires {
    color: var(--proof-error);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

#proof-draft-status {
    font-size: 12px;
    color: var(--proof-text-secondary);
    margin-top: 4px;
}

/* Photographer Notes */
.proof-photoshoot-notes {
    background: var(--proof-notes-bg) !important;
    color: var(--proof-text);
    border-left: 4px solid var(--proof-primary) !important;
    padding: 16px !important;
    margin-bottom: 24px !important;
    border-radius: 8px !important;
    border: 1px solid var(--proof-card-border) !important;
}

.proof-photoshoot-notes h3 {
    margin: 0 0 12px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--proof-primary);
    font-weight: 700;
}

.proof-photoshoot-notes p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--proof-text-secondary);
    font-style: italic;
}

/* Filter Controls */
.proof-filter-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--proof-card-border);
}

.proof-filter-btn {
    padding: 10px 18px;
    background: transparent;
    color: var(--proof-text-secondary);
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.proof-filter-btn:hover {
    color: var(--proof-text);
}

.proof-filter-btn-active {
    color: var(--proof-primary);
    border-bottom-color: var(--proof-primary);
}

/* Gallery Grid */
.proof-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 120px;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .proof-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .proof-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .proof-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* Photo Item */
.proof-photo-item {
    border: 2px solid var(--proof-card-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--proof-card-bg);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.proof-photo-item:hover {
    border-color: var(--proof-primary);
    background: var(--proof-card-bg-hover);
    box-shadow: var(--proof-shadow);
}

.proof-photo-item.selected {
    border-color: var(--proof-primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    background: var(--proof-card-bg-hover);
}

/* Photo Image Wrapper */
.proof-photo-img-wrapper {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
    background: #000;
}

.proof-photo-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.proof-photo-item:hover .proof-photo-img-wrapper img {
    transform: scale(1.05);
}

/* Watermark */
.proof-watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 5;
}

/* Checkmark */
.proof-checkmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 0.2s ease;
}

.proof-checkmark svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.proof-photo-item.selected .proof-checkmark {
    display: flex;
    background: var(--proof-primary);
    border-color: #fff;
    transform: scale(1);
}

/* Action Buttons */
.proof-photo-actions {
    padding: 12px;
    text-align: center;
    background: var(--proof-card-bg);
    border-top: 1px solid var(--proof-card-border);
}

.btn-toggle-select {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    color: var(--proof-text);
    border: 1.5px solid var(--proof-card-border);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-toggle-select:active {
    transform: scale(0.98);
}

.btn-toggle-select:hover {
    border-color: var(--proof-primary);
    color: var(--proof-primary);
}

.proof-photo-item.selected .btn-toggle-select {
    background: var(--proof-primary);
    color: #fff;
    border-color: var(--proof-primary);
    font-weight: 700;
}

.proof-photo-item.selected .btn-toggle-select:hover {
    background: var(--proof-primary-hover);
    border-color: var(--proof-primary-hover);
}

/* Note Input */
.proof-photo-note-wrapper {
    padding: 0 12px 12px;
    background: var(--proof-card-bg);
    display: none;
    animation: slideDown 0.2s ease;
}

.proof-photo-note-wrapper.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

.proof-photo-note {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    padding: 10px;
    border: 1px solid var(--proof-card-border);
    border-radius: 6px;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: var(--proof-text);
    transition: all 0.2s ease;
}

.proof-photo-note::placeholder {
    color: var(--proof-text-secondary);
    opacity: 0.7;
}

.proof-photo-note:focus {
    outline: none;
    border-color: var(--proof-primary);
    background: rgba(76, 175, 80, 0.1);
}

/* Sticky Footer */
.proof-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--proof-footer-bg);
    color: var(--proof-footer-text);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    border-top: 1px solid var(--proof-card-border);
}

@media (min-width: 768px) {
    .proof-sticky-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        gap: 20px;
    }
}

.proof-status-wrapper {
    text-align: center;
}

@media (min-width: 768px) {
    .proof-status-wrapper {
        text-align: left;
    }
}

.proof-status {
    font-size: 15px;
    font-weight: 600;
    color: var(--proof-footer-text);
}

#proof-warning {
    font-size: 12px;
    color: #ffb74d;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (min-width: 768px) {
    #proof-warning {
        justify-content: flex-start;
    }
}

/* Review Button */
#proof-review-btn {
    background: linear-gradient(135deg, var(--proof-accent), var(--proof-accent-hover));
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#proof-review-btn:active {
    transform: scale(0.98);
}

#proof-review-btn:hover {
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

#proof-review-btn:disabled {
    background: var(--proof-text-secondary);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media (min-width: 768px) {
    #proof-review-btn {
        width: auto;
    }
}

/* Modal Base Styles */
.proof-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.proof-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Review Modal */
.proof-modal-content {
    background-color: var(--proof-card-bg);
    color: var(--proof-text);
    padding: 24px;
    border: 1px solid var(--proof-card-border);
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--proof-shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.proof-modal-content h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--proof-text);
}

.proof-modal-content p {
    margin: 12px 0;
    color: var(--proof-text-secondary);
    font-size: 14px;
}

.proof-modal-content p strong {
    color: var(--proof-text);
}

/* Lightbox Modal */
.proof-lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.proof-lightbox-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#proof-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    border-radius: 8px;
    box-shadow: var(--proof-shadow-lg);
}

.lightbox-watermark {
    background-size: contain;
}

.proof-lightbox-filename {
    margin-top: 16px;
    font-size: 14px;
    color: var(--proof-text-secondary);
    text-align: center;
    max-width: 90%;
    word-break: break-word;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Modal Close Button */
.proof-modal-close {
    color: var(--proof-text-secondary);
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    z-index: 2010;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.proof-lightbox-close {
    color: #fff;
    font-size: 36px;
    right: 20px;
    top: 20px;
    background: rgba(0, 0, 0, 0.6);
}

.proof-modal-close:hover,
.proof-modal-close:focus {
    color: var(--proof-text);
    background: var(--proof-card-bg);
    text-decoration: none;
    cursor: pointer;
}

.proof-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Review Warning */
#proof-review-warning {
    display: none;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
    border-radius: 6px;
    border-left: 4px solid var(--proof-error);
    font-size: 14px;
    line-height: 1.5;
}

/* Final Comments */
#proof-final-comments {
    width: 100%;
    box-sizing: border-box;
    height: 120px;
    margin-top: 16px;
    padding: 12px;
    border: 1px solid var(--proof-card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--proof-text);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    transition: all 0.2s ease;
}

#proof-final-comments::placeholder {
    color: var(--proof-text-secondary);
    opacity: 0.7;
}

#proof-final-comments:focus {
    outline: none;
    border-color: var(--proof-primary);
    background: rgba(76, 175, 80, 0.1);
}

/* Submit Button */
#proof-submit-btn {
    background: linear-gradient(135deg, var(--proof-primary), var(--proof-primary-hover));
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    margin-top: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

#proof-submit-btn:active {
    transform: scale(0.98);
}

#proof-submit-btn:hover:not(:disabled) {
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

#proof-submit-btn:disabled {
    background: var(--proof-text-secondary);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

/* Success Message */
.proof-success-message {
    background: rgba(76, 175, 80, 0.15) !important;
    color: var(--proof-primary) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 16px !important;
    margin-top: 20px !important;
    border-left: 4px solid var(--proof-primary) !important;
    border: 1px solid var(--proof-primary) !important;
    font-weight: 600;
}

/* Submitted View */
.proof-submitted-view {
    background: var(--proof-bg);
    color: var(--proof-text);
    padding: 24px;
    margin-top: 20px;
}

.proof-submitted-header {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--proof-primary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.proof-submitted-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--proof-primary);
}

.proof-submitted-header p {
    font-size: 14px;
    color: var(--proof-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.proof-submitted-comments {
    background: var(--proof-card-bg);
    border: 1px solid var(--proof-card-border);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 24px;
}

.proof-submitted-comments h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--proof-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-submitted-comments p {
    margin: 0;
    font-size: 14px;
    color: var(--proof-text-secondary);
    white-space: pre-wrap;
    line-height: 1.6;
    word-break: break-word;
}

.proof-submitted-gallery {
    background: var(--proof-card-bg);
    border: 1px solid var(--proof-card-border);
    border-radius: 8px;
    padding: 18px;
}

.proof-submitted-gallery h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--proof-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-submitted-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .proof-submitted-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .proof-submitted-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .proof-submitted-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-submitted-item {
    background: var(--proof-notes-bg);
    border: 1px solid var(--proof-card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.proof-submitted-item:hover {
    border-color: var(--proof-primary);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.proof-submitted-clickable {
    cursor: pointer;
}

.proof-submitted-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.proof-submitted-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.proof-submitted-clickable:hover .proof-submitted-img-wrapper img {
    transform: scale(1.05);
}

.proof-submitted-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.proof-submitted-clickable:hover .proof-submitted-zoom-overlay {
    opacity: 1;
}

.proof-submitted-zoom-overlay svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.proof-submitted-note {
    padding: 12px;
    font-size: 12px;
    color: var(--proof-text-secondary);
    border-top: 1px solid var(--proof-card-border);
    line-height: 1.4;
}

.proof-submitted-note strong {
    color: var(--proof-primary);
    font-weight: 600;
}

/* Error Message */
.proof-error-message {
    background: rgba(231, 76, 60, 0.15) !important;
    color: var(--proof-error) !important;
    padding: 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 16px !important;
    margin-top: 20px !important;
    border-left: 4px solid var(--proof-error) !important;
    border: 1px solid var(--proof-error) !important;
    font-weight: 600;
}

/* Accessibility & Responsive */
@media (max-width: 479px) {
    .proof-gallery-grid {
        gap: 10px;
    }

    .proof-photo-item {
        border-radius: 8px;
    }

    .proof-app-header {
        padding: 12px;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .proof-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dark mode adjustments for form elements */
input[type="text"],
input[type="email"],
select,
textarea {
    background: rgba(255, 255, 255, 0.05);
    color: var(--proof-text);
    border: 1px solid var(--proof-card-border);
    border-radius: 6px;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--proof-primary);
    outline: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection highlight */
::selection {
    background: var(--proof-primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--proof-card-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--proof-card-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--proof-primary);
}

/* ========================================
   HIDE WORDPRESS THEME ELEMENTS
   Show only Photo Proofing App
   ======================================== */

/* Hide WordPress header */
.site-header,
.header,
header,
.navbar,
nav,
.menu,
.navigation {
    display: none !important;
}

/* Hide WordPress footer */
footer,
.site-footer,
.footer,
.wp-footer {
    display: none !important;
}

/* Hide sidebar/widgets */
.sidebar,
.widget-area,
.primary-sidebar,
.secondary-sidebar,
aside {
    display: none !important;
}

/* Hide post navigation */
.post-navigation,
.posts-navigation,
.pagination,
.nav-previous,
.nav-next {
    display: none !important;
}

/* Hide post meta/author info */
.entry-meta,
.entry-footer,
.post-meta,
.post-footer,
.author-info {
    display: none !important;
}

/* Hide edit links */
.edit-link,
.post-edit-link {
    display: none !important;
}

/* Hide comments section */
.comments,
.comments-area,
#comments,
.comment-form {
    display: none !important;
}

/* Hide breadcrumbs */
.breadcrumb,
.breadcrumbs,
nav.breadcrumb {
    display: none !important;
}

/* Hide related posts */
.related-posts,
.post-related,
.related-articles {
    display: none !important;
}

/* Hide page title if inside app content */
.page-title,
.entry-title,
.post-title,
.footer-social-button,
.single-title {
    display: none !important;
}

/* Full width for content */
body.single-proof_gallery {
    background: var(--proof-bg) !important;
    color: var(--proof-text) !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure content takes full width */
.content-area,
.site-content,
main,
.container,
.container-fluid,
.post,
.page,
.entry,
.entry-content {
    background: var(--proof-bg) !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove padding from wrapper divs */
.site,
.wrapper,
.site-wrapper,
.page-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure photo proofing app is visible and full width */
#photo-proofing-app {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
