/* PhotoEZ Admin Demo — Admin Styles */

/* Floating demo banner at the bottom of the screen */
#photoez-admin-demo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#photoez-admin-demo-banner strong {
    color: #46c12f;
}

#photoez-demo-banner-dismiss {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 16px;
    margin-left: 8px;
    line-height: 1;
}

#photoez-demo-banner-dismiss:hover {
    color: #fff;
}

/* Demo mode notice */
.photoez-demo-mode-notice p {
    font-size: 13px;
    margin: 8px 0;
}

/* Push footer up so it's not hidden behind banner */
#wpfooter {
    padding-bottom: 40px;
}


/* ============================= */
/* Minimal Admin Bar             */
/* ============================= */

#photoez-demo-admin-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    background: #1a1a2e;
    color: #fff;
    z-index: 99998;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

#photoez-demo-admin-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.photoez-demo-admin-logo {
    color: #46c12f;
    font-weight: 700;
    font-size: 13px;
}

.photoez-demo-admin-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 12px;
    transition: background 0.2s;
}

.photoez-demo-admin-link:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Push admin content down to make room for our bar */
#wpcontent, #wpbody {
    margin-top: 36px !important;
}
