/* ===================================
   Dashboard Layout
=================================== */

.pp-dashboard{

    display:flex;

    gap:30px;

    margin-top:30px;

    align-items:flex-start;

}

/* ===================================
   Sidebar
=================================== */

.pp-dashboard-sidebar{

    width:280px;

    background:linear-gradient(160deg,#ff4b7d,#ff7d9a 55%,#ff8a65);

    border-radius:15px;

    padding:25px;

    box-shadow:0 10px 25px rgba(255,120,101,.25);

    position:sticky;

    top:30px;


}

.pp-dashboard-sidebar h3{

    margin-bottom:25px;

    color:#fff;

    font-size:24px;

    font-weight:700;

    text-align:center;
 
}
 
.pp-sidebar-profile{
 
    text-align:center;
 
    padding-bottom:14px;
 
    margin-bottom:10px;
 
    border-bottom:1px solid rgba(255,255,255,.25);
 
}
 
.pp-sidebar-profile-photo{
 
    width:92px;
 
    height:92px;
 
    border-radius:50%;
 
    overflow:hidden;
 
    margin:0 auto 12px;
 
    background:rgba(255,255,255,.2);
 
}
 
.pp-sidebar-profile-photo img{
 
    width:100%;
 
    height:100%;
 
    object-fit:cover;
 
    display:block;
 
}
 
.pp-sidebar-profile h4{
 
    margin:0 0 4px;
 
    font-size:19px;
 
    font-weight:700;
 
    color:#fff;
 
}
 
.pp-sidebar-profile p{
 
    margin:0 0 8px;
 
    font-size:14px;
 
    color:rgba(255,255,255,.85);
 
}
 
.pp-sidebar-profile-badge{
 
    display:inline-flex;
 
    align-items:center;
 
    gap:4px;
 
    padding:3px 12px;
 
    border-radius:20px;
 
    font-size:11px;
 
    font-weight:700;
 
}
 
.pp-badge-active{
 
    background:#e7f7ec;
 
    color:#16a34a;
 
}
 
.pp-badge-expired{
 
    background:#fdecec;
 
    color:#dc2626;
 
}
 
.pp-dashboard-sidebar ul{

    list-style:none;

    padding:0;

    margin:0;

}

.pp-dashboard-sidebar li{

    margin-bottom:12px;

}

.pp-dashboard-sidebar a{

    display:block;

    padding:12px 16px;

    background:rgba(255,255,255,.16);

    border-radius:10px;

    text-decoration:none;

    color:#fff;

    font-size:14px;

    font-weight:500;

    transition:.3s;

}

.pp-dashboard-sidebar a:hover{

    background:#fff;

    color:#ff7865;

    transform:translateX(6px);

    box-shadow:0 6px 16px rgba(0,0,0,.12);

}

.pp-dashboard-sidebar a.pp-menu-active{

    background:rgba(255,255,255,.16);

    color:#fff;

}

/* ===================================
   Content
=================================== */

.pp-dashboard-content{
    flex:1;
    width:100%;
    max-width:none;
}

/* ===================================
   Card
=================================== */

.pp-dashboard-card{

    background:#fff;

    border-radius:15px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:25px;

}

.pp-dashboard-card h2{

    margin-bottom:15px;

    font-size:28px;

}

.pp-dashboard-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.pp-dashboard-card p{

    margin:12px 0;

    font-size:16px;

    color:#444;

    line-height:1.6;

}

/* ===================================
   Progress Bar
=================================== */

.pp-progress{

    width:100%;

    height:14px;

    background:#ececec;

    border-radius:50px;

    overflow:hidden;

    margin:20px 0;

}

.pp-progress-bar{

    height:100%;

    width:0;

    background:linear-gradient(90deg,#ff4b7d,#ff8a65);

    transition:width .5s ease;

}

/* ===================================
   Button
=================================== */

.pp-dashboard-card .pp-btn{

    display:inline-block;

    margin-top:15px;

    padding:12px 22px;

}

/* ===================================
   Responsive
=================================== */

@media(max-width:992px){

.pp-dashboard{

    flex-direction:column;

}

.pp-dashboard-sidebar{

    width:100%;

    position:relative;

    top:0;

}

}

@media(max-width:576px){

.pp-dashboard-card{

    padding:20px;

}

.pp-dashboard-card h2{

    font-size:24px;

}

.pp-dashboard-sidebar h3{

    font-size:20px;

}

.pp-dashboard-sidebar a{

    padding:12px;

}

}

/* ===== Publish Success Card ===== */

.pp-success-card{

    background:#fff;

    border:1px solid #e8e8e8;

    border-left:5px solid #16a34a;

    border-radius:12px;

    margin-top:25px;

    overflow:hidden;

    box-shadow:0 4px 18px rgba(0,0,0,.06);

}

.pp-success-top{

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px 25px;

    border-bottom:1px solid #eee;

}

.pp-success-icon{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#dcfce7;

    color:#16a34a;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:bold;

    flex-shrink:0;

}

.pp-success-title h3{

    margin:0;

    color:#222;

    font-size:24px;

}

.pp-success-title p{

    margin-top:4px;

    color:#777;

    font-size:14px;

}

.pp-success-details{

    padding:20px 25px;

}

.pp-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

    border-bottom:1px dashed #eee;

}

.pp-row:last-child{

    border-bottom:none;

}

.pp-row span{

    color:#666;

}

.pp-row strong{

    color:#111;

}

.pp-green{

    color:#16a34a;

}

.pp-success-footer{

    display:flex;

    gap:12px;

    padding:20px 25px;

    background:#fafafa;

}

.pp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    padding:8px 16px;

    min-height:40px;

    border-radius:8px;

    font-size:14px;

    font-weight:600;

    line-height:1.2;

    text-decoration:none;

    transition:.3s;

    white-space:nowrap;

}

.pp-btn-primary{

    background:#ff4f7b;

    color:#fff;

    border:1px solid #ff4f7b;
    min-width:160px;

}

.pp-btn-primary:hover{

    background:#e63f6b;

    border-color:#e63f6b;

}



.pp-btn-light{

    background:#f8f8f8;

    border:1px solid #e6e6e6;

    color:#ff4f7b;
    min-width:190px;

}

.pp-btn-light:hover{

    background:#f1f1f1;

    border-color:#dcdcdc;

}



@media(max-width:768px){

.pp-row{

    flex-direction:column;

    align-items:flex-start;

    gap:5px;

}

.pp-success-footer{

    display:flex;

    gap:10px;

    padding:18px 25px;

    background:#fafafa;

    justify-content:flex-start;

    align-items:center;

}

}
/*=========================
Dashboard Sub Menu
=========================*/

.pp-menu-parent{

margin-bottom:12px;

}

.pp-menu-title{

display:block;

padding:12px 16px;

background:rgba(255,255,255,.16);

border-radius:10px;

font-weight:600;

font-size:14px;

color:#fff;

cursor:default;

}

.pp-submenu{

list-style:none;

margin:8px 0 0;

padding-left:18px;

}

.pp-submenu li{

margin:6px 0;

}

.pp-submenu a{

display:block;

padding:9px 13px !important;

background:rgba(255,255,255,.9) !important;

border-left:3px solid #fff;

border-radius:8px;

font-size:13px;

color:#ff7865;

transition:.3s;

}



/* ===============================
Accordion Menu
=============================== */

.pp-menu-title{

display:flex !important;

justify-content:space-between;

align-items:center;

cursor:pointer;

}

.pp-arrow{

transition:.3s;

font-size:12px;

}

.pp-submenu{

display:none;

padding-left:18px;

margin-top:8px;

list-style:none;

}
.pp-submenu a:hover{

    background:#fff !important;

    color:#ff7865 !important;

    border-left-color:#ff7865;

}

.pp-menu-parent.active .pp-submenu{

display:block;

}

.pp-menu-parent.active .pp-arrow{

    transform:rotate(90deg);

}
 
/* ===================================
   Published Profiles
=================================== */
 
.pp-profile-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(140px,140px));
    gap:14px;
    justify-content:flex-start;
}
 
.pp-profile-card,
.pp-profile-card *{
    box-sizing:border-box;
}
 
.pp-profile-card{
    background:#fff;
    border-radius:18px;
    width:100%;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:.3s ease;
    display:flex;
    flex-direction:column;
}
 
.pp-profile-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.14);
}
 
.pp-profile-link{
    display:flex;
    flex-direction:column;
    color:inherit;
    text-decoration:none;
}
 
.pp-profile-image{
    width:100%;
    aspect-ratio:3/4;
    overflow:hidden;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
}
 
.pp-profile-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    background:#fff;
}
 
.pp-no-photo{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:13px;
}
 
.pp-profile-info{
    padding:4px 10px 2px;
    display:flex;
    flex-direction:column;
    flex:1;
    gap:1px;
}
 
.pp-profile-info h3{
    margin:0;
    font-size:12.5px;
    line-height:1.25;
    font-weight:500;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
 
.pp-profile-code{
    margin:0;
    color:#666;
    font-size:10px;
    line-height:1.3;
}
 
.pp-profile-meta{
    margin:0;
    color:#5b4fe9;
    font-size:10px;
    font-weight:600;
    line-height:1.3;
}
 
.pp-profile-footer{
    margin-top:4px;
    padding:0 10px 8px;
    display:flex;
    flex-direction:column;
    gap:4px;
}
 
.pp-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:4px 0;
    border-radius:6px;
    font-size:10px;
    font-weight:700;
    letter-spacing:.3px;
}
 
.pp-status-published{
    background:#e7f7ec;
    color:#16a34a;
}
 
.pp-status-expired{
    background:#fdecec;
    color:#dc2626;
}
 
.pp-renew-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:26px;
    border-radius:6px;
    background:#5b4fe9;
    color:#fff;
    font-size:10.5px;
    font-weight:600;
    text-decoration:none;
}
 
.pp-renew-btn:hover{
    background:#463adb;
}
 
/* Mobile */
 
@media(max-width:480px){
 
    .pp-profile-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        max-width:100%;
    }
 
    .pp-profile-info h3{
        font-size:12px;
    }
 
    .pp-profile-code{
        font-size:10px;
    }
 
    .pp-status{
        font-size:9px;
    }
 
    .pp-renew-btn{
        height:24px;
        font-size:10px;
    }
 
}
 
/* ===================================
   Avatar Initial (Sidebar)
=================================== */

.pp-avatar-initial{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#ff4b7d,#ff8a65);
}

.pp-submenu a.pp-submenu-active{
    background:rgba(255,255,255,.55) !important;
    color:#ff7865 !important;
}

/* ===================================
   Overview Card (Welcome header + Account
   info merged into one compact card)
=================================== */

.pp-overview-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:25px;
    box-shadow:
        0 2px 4px rgba(255,75,125,.06),
        0 12px 24px rgba(255,75,125,.1),
        0 22px 36px -18px rgba(255,75,125,.2);
}

.pp-overview-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    background:linear-gradient(120deg,#ff4b7d,#ff7d9a 60%,#ff8a65);
    padding:18px 24px;
}

.pp-overview-header-text h2{
    margin:0 0 3px;
    font-size:18px;
    font-weight:700;
    color:#fff;
}

.pp-overview-header-text p{
    margin:0;
    font-size:13px;
    color:rgba(255,255,255,.9);
}

.pp-welcome-badge{
    background:rgba(255,255,255,.18) !important;
    color:#fff !important;
    flex-shrink:0;
    font-size:12.5px;
    padding:6px 16px;
}

.pp-overview-body{
    padding:16px 24px 20px;
    background:#fff5f8;
}

.pp-overview-body .pp-stat-grid{
    margin:0;
}

.pp-overview-body .pp-stat-card{
    background:#fff;
    padding:12px 14px;
    box-shadow:0 3px 10px rgba(255,75,125,.08);
}

.pp-overview-body .pp-stat-label{
    font-size:15px;
    color:#777;
}

.pp-overview-body .pp-stat-value{
    font-size:12px;
}

.pp-card-heading{
    margin:0 0 18px;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.pp-stat-value-small{
    font-size:15px;
    font-weight:600;
    word-break:break-word;
}

/* ===================================
   Publish Promo Card
=================================== */

.pp-promo-card{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    background:#fff;
    border:1px dashed #ffb3c6;
    border-radius:15px;
    padding:26px 30px;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.pp-promo-icon{
    width:56px;
    height:56px;
    flex-shrink:0;
    border-radius:50%;
    background:#fde8ee;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.pp-promo-text{
    flex:1;
    min-width:220px;
}

.pp-promo-text h3{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.pp-promo-text p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.55;
}

.pp-promo-btn{
    flex-shrink:0;
}

@media(max-width:576px){

    .pp-overview-header{
        padding:16px 18px;
    }

    .pp-overview-body{
        padding:14px 18px 18px;
    }

    .pp-overview-header-text h2{
        font-size:17px;
    }

    .pp-promo-card{
        padding:20px;
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }

}

/* ===================================
   Stat Cards (Profile Status / Days / ID)
   Used on Dashboard "view" action + public profile.php
=================================== */
 
.pp-stat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:16px;
    margin:20px 0;
}
 
.pp-stat-card{
    background:#fff;
    border-radius:14px;
    padding:18px 20px;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
    display:flex;
    flex-direction:column;
    gap:6px;
}
 
.pp-stat-label{
    font-size:12.5px;
    color:#888;
    font-weight:600;
}
 
.pp-stat-value{
    font-size:22px;
    font-weight:700;
}
 
.pp-text-red{ color:#dc2626; }
.pp-text-green{ color:#16a34a; }
.pp-text-orange{ color:#f59e0b; }
.pp-text-blue{ color:#2563eb; }
 
/* ===================================
   Expiry Progress Bar
=================================== */
 
.pp-progress-track{
    width:100%;
    height:10px;
    border-radius:20px;
    background:#eee;
    overflow:hidden;
    margin-top:10px;
}
 
.pp-progress-fill{
    height:100%;
    border-radius:20px;
    background:linear-gradient(90deg,#16a34a,#4ade80);
    transition:width .3s ease;
}
 
/* ===================================
   Quick Actions
=================================== */
 
.pp-quick-actions{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
    gap:14px;
    margin-top:12px;
}
 
.pp-quick-action{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    padding:16px 10px;
    border-radius:14px;
    background:#fafafa;
    border:1px solid #eee;
    text-decoration:none;
    color:#333;
    font-size:12.5px;
    font-weight:600;
    text-align:center;
    transition:.2s ease;
}
 
.pp-quick-action:hover{
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transform:translateY(-3px);
}
 
.pp-quick-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}
 
.pp-quick-icon-pink{ background:#fde8ee; color:#ff4b7d; }
.pp-quick-icon-purple{ background:#efeafe; color:#8b5cf6; }
.pp-quick-icon-orange{ background:#fff2e5; color:#f59e0b; }
.pp-quick-icon-blue{ background:#e8f1ff; color:#2563eb; }
 
/* ===================================
   Public / Owner Single Profile Page
   (templates/profile.php)
=================================== */
 
.pp-profile-page{
    display:flex;
    gap:30px;
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    margin:40px 0;
    align-items:flex-start;
}
 
.pp-profile-page-photo{
    width:220px;
    flex-shrink:0;
    aspect-ratio:3/4;
    border-radius:14px;
    overflow:hidden;
    background:#f5f5f5;
    display:flex;
    align-items:center;
    justify-content:center;
}
 
.pp-profile-page-photo img{
    width:100%;
    height:100%;
    object-fit:contain;
    background:#fff;
}
 
.pp-profile-page-info{
    flex:1;
    min-width:0;
}
 
.pp-profile-page-info h2{
    margin:0 0 6px;
    font-size:28px;
    font-weight:700;
    color:#222;
}
 
.pp-profile-page-id{
    color:#888;
    font-size:14px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}
 
/* Public View - Profile Detail Grid */
 
.pp-profile-detail-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:18px;
}
 
.pp-profile-detail-item{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding-bottom:12px;
    border-bottom:1px solid #f0f0f0;
}
 
.pp-profile-detail-label{
    font-size:12px;
    color:#999;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.3px;
}
 
.pp-profile-detail-value{
    font-size:15px;
    color:#222;
    font-weight:600;
}
 
/* Mobile */
 
@media(max-width:600px){
 
    .pp-profile-page{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:20px;
    }
 
    .pp-profile-page-photo{
        width:180px;
    }
 
    .pp-profile-page-id{
        justify-content:center;
    }
 
    .pp-quick-actions,
    .pp-stat-grid{
        grid-template-columns:repeat(2,1fr);
    }
 
}
 
/* ===================================
   Settings - Update Account Form
=================================== */

.pp-settings-card{
    background:#fff5f8;
    border:1px solid #ffc2d6;
    box-shadow:
        0 2px 4px rgba(255,75,125,.06),
        0 12px 24px rgba(255,75,125,.12),
        0 28px 44px -18px rgba(255,75,125,.22);
}

.pp-settings-card .pp-settings-field input{
    background:#fff;
    border-color:#ffe1ea;
    box-shadow:0 3px 10px rgba(255,75,125,.06);
}

.pp-settings-card .pp-settings-field input:focus{
    box-shadow:0 0 0 3px rgba(255,120,101,.15);
}

.pp-settings-alert{
    padding:12px 16px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.pp-settings-alert-success{
    background:#e7f7ec;
    color:#16a34a;
}

.pp-settings-alert-error{
    background:#fdecec;
    color:#dc2626;
}

.pp-settings-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:420px;
}

.pp-settings-field{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.pp-settings-field label{
    font-size:13.5px;
    font-weight:600;
    color:#555;
}

.pp-settings-field input{
    padding:12px 14px;
    border:1px solid #eee;
    border-radius:10px;
    font-size:14.5px;
    color:#222;
    background:#fafafa;
    transition:.2s;
}

.pp-settings-field input:focus{
    outline:none;
    border-color:#ff7865;
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,120,101,.15);
}

.pp-settings-form .pp-btn{
    align-self:flex-start;
}

.pp-link-btn{
    background:none;
    border:none;
    padding:0;
    color:#ff7865;
    font-size:13.5px;
    font-weight:600;
    text-decoration:underline;
    cursor:pointer;
}

.pp-link-btn:hover{
    color:#ff4b7d;
}

/* ===================================
   Empty State (Published Profiles /
   Settings placeholder tabs)
=================================== */

.pp-empty-state{
    text-align:center;
    padding:40px 20px;
}

.pp-empty-state h3{
    margin:0 0 8px;
    font-size:18px;
    color:#333;
}

.pp-empty-state p{
    margin:0 0 18px;
    font-size:14px;
    color:#888;
}

/* ===================================
   Settings - Delete Account (Danger Zone)
=================================== */

.pp-danger-box{
    background:#fff5f5;
    border:1px solid #ffcdd2;
    border-radius:14px;
    padding:22px 24px;
    max-width:480px;
}

.pp-danger-box h3{
    margin:0 0 10px;
    font-size:17px;
    color:#c0392b;
}

.pp-danger-box p{
    margin:0 0 18px;
    font-size:14px;
    color:#666;
    line-height:1.6;
}

.pp-btn-danger{
    background:#dc2626;
    color:#fff;
    border:none;
}

.pp-btn-danger:hover{
    background:#b91c1c;
    color:#fff;
}

/* ===================================
   Settings - Privacy / Notifications
=================================== */

.pp-settings-field select{
    padding:12px 14px;
    border:1px solid #eee;
    border-radius:10px;
    font-size:14.5px;
    color:#222;
    background:#fafafa;
    transition:.2s;
}

.pp-settings-field select:focus{
    outline:none;
    border-color:#ff7865;
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,120,101,.15);
}

.pp-toggle-field{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:14px 16px;
    background:#fafafa;
    border:1px solid #eee;
    border-radius:12px;
}

.pp-toggle-field strong{
    display:block;
    font-size:14.5px;
    color:#222;
    margin-bottom:2px;
}

.pp-toggle-field p{
    margin:0;
    font-size:13px;
    color:#888;
    line-height:1.5;
}

.pp-toggle-switch{
    position:relative;
    display:inline-block;
    width:44px;
    height:24px;
    flex-shrink:0;
}

.pp-toggle-switch input{
    opacity:0;
    width:0;
    height:0;
}

.pp-toggle-slider{
    position:absolute;
    cursor:pointer;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:#ddd;
    border-radius:24px;
    transition:.25s;
}

.pp-toggle-slider::before{
    position:absolute;
    content:"";
    height:18px;
    width:18px;
    left:3px;
    bottom:3px;
    background:#fff;
    border-radius:50%;
    transition:.25s;
    box-shadow:0 1px 3px rgba(0,0,0,.2);
}

.pp-toggle-switch input:checked + .pp-toggle-slider{
    background:#ff7865;
}

.pp-toggle-switch input:checked + .pp-toggle-slider::before{
    transform:translateX(20px);
}

/* ===================================
   Payment History
=================================== */

.pp-status-pending{
    background:#fff8e1;
    color:#b45309;
}

.pp-payment-table-wrap{
    overflow-x:auto;
}

.pp-payment-table{
    width:100%;
    border-collapse:collapse;
    min-width:640px;
}

.pp-payment-table th{
    text-align:left;
    font-size:12.5px;
    color:#888;
    text-transform:uppercase;
    letter-spacing:.4px;
    padding:10px 14px;
    border-bottom:2px solid #f0f0f0;
    white-space:nowrap;
}

.pp-payment-table td{
    padding:14px;
    font-size:14px;
    color:#333;
    border-bottom:1px solid #f5f5f5;
    vertical-align:middle;
}

.pp-payment-table tbody tr:hover{
    background:#fff9fa;
}

.pp-payment-table .pp-status{
    width:auto;
    display:inline-block;
    padding:5px 12px;
}

.pp-payment-code{
    display:block;
    font-size:11.5px;
    color:#999;
    margin-top:2px;
}

.pp-payment-txn{
    font-family:monospace;
    font-size:12.5px;
    color:#666;
    background:#f7f7f7;
    padding:3px 8px;
    border-radius:6px;
}

@media(max-width:768px){

    .pp-payment-table thead{
        display:none;
    }

    .pp-payment-table, .pp-payment-table tbody, .pp-payment-table tr, .pp-payment-table td{
        display:block;
        width:100%;
    }

    .pp-payment-table{
        min-width:0;
    }

    .pp-payment-table tr{
        border:1px solid #f0f0f0;
        border-radius:12px;
        margin-bottom:12px;
        padding:6px 14px;
    }

    .pp-payment-table td{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:12px;
        text-align:right;
        border-bottom:1px solid #f5f5f5;
    }

    .pp-payment-table td:last-child{
        border-bottom:none;
    }

    .pp-payment-table td::before{
        content:attr(data-label);
        font-size:11.5px;
        font-weight:700;
        color:#999;
        text-transform:uppercase;
        text-align:left;
    }

}

/* ===================================
   Favourite Button (Public Profile Page)
=================================== */

.pp-favorite-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border:1px solid #ffc2d6;
    background:#fff5f8;
    color:#ff4b7d;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    text-decoration:none;
}

.pp-favorite-btn:hover{
    background:#ffe8ef;
}

.pp-favorite-btn.is-favorited{
    background:#ff4b7d;
    border-color:#ff4b7d;
    color:#fff;
}

/* ===================================
   Publish Wizard - Inline Validation Alert
=================================== */

.pp-form-alert{
    background:#fdecec;
    color:#dc2626;
    border-radius:10px;
    padding:14px 18px;
    margin-bottom:20px;
    font-size:14px;
    font-weight:600;
}

.pp-form-alert p{
    margin:4px 0;
}
