table.widefat th{
    background:#6366f1;
    color:#fff;
    padding:10px;
}

table.widefat td{
    background:#f7f9ff;
    padding:10px;
    border-radius:6px;
}
button{
    margin:2px;
}



.marketing-plans-panel {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
    /*font-family: 'IRANSans', sans-serif;*/
}

.marketing-plans-panel h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #111827;
    font-weight: 600;
    text-align: right;
}

.marketing-plans-panel p {
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mp-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mp-card {
    flex: 1 1 280px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.mp-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
}

.mp-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.mp-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #033a88;
    color: #fff;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.mp-card .button:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.mp-card .button svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* آیکن ستاره برای ویژه */
.mp-card.special h3::before {
    content: '⭐';
    font-size: 18px;
}

/* آیکن عادی */
.mp-card.normal h3::before {
    content: '👤';
    font-size: 18px;
}


.mp-card.web-banner h3::before {
    content: "🖼️";
    font-size: 18px;
}

.mp-card.reportage h3::before {
    content: "📝️";
    font-size: 18px;
}




.mp-notifications {
    margin-bottom:20px;
}
.mp-notice {
    background:#f0f4ff;
    border-left:4px solid #6366f1;
    padding:10px;
    margin-bottom:8px;
    border-radius:6px;
    position:relative;
}
.mp-notice.approved {
    border-color:#16a34a;
    background: #ecffee;
}
.mp-notice.rejected {
    border-color:#ef4444;
    background: #fff2f2;
}
.mp-close-notice {
    position:absolute;
    top:5px;
    right:10px;
    font-size:12px;
    line-height:6px;
    padding:2px;
}



.mp-empty{
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mp-empty-btn{
    padding: 10px;
    background: #033a88;
    color: #fff;
    border-radius: 15px;
}
.mp-empty-inner{
 font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;   
}


.mp-empty-inner-span1{
    width: 100px;
    height: 100px;
    background: #033a88;
    font-size: 80px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 50%;
}
.mp-empty-inner-span2{
    color: #000;
    font-size: 18px;
}





    
.mp-dashboard{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}
.mp-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    box-shadow:0 6px 20px rgba(0,0,0,.05);
    transition:.3s;
}
.mp-card:hover{transform:translateY(-3px);}
.mp-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}
.mp-card-header h3{
    margin:0;
    font-size:16px;
}
.mp-edit-btn{
    background:#033a88;
    color:#fff;
    border:none;
    padding:6px 12px;
    border-radius:6px;
    cursor:pointer;
}
.mp-card-body p{margin:4px 0;}
.mp-badge{
    display:inline-block;
    background:#eef2ff;
    color:#3730a3;
    padding:6px 10px;
    border-radius:20px;
    margin:4px;
}
.mp-logo{
    max-width:120px;
    border-radius:10px;
}

.mp-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:9999;
    justify-content:center;
    align-items:center;
}
.mp-modal-content{
    background:#fff;
    width:100%;
    max-width:420px;
    max-height:80vh;
    overflow-y:auto;
    border-radius:14px;
    padding:20px;
}

.mp-modal-content input,
.mp-modal-content textarea{
    width:100%;
    margin-bottom:10px;
    padding:8px;
    border-radius:6px;
    border:1px solid #ddd;
    font-family:'Dananum';
}
.mp-edit-fields input{
    border-color:#ddd;
    font-size:13px;
    padding:8px;
    line-height:unset;
}
.mp-save-btn{
    background:#16a34a;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:6px;
}
.mp-cancel-btn{
    background:#ef4444;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:6px;
}



.mp-plan-status-box{
    /*margin-top:30px;*/
}

.mp-pending-box{
    background:#fff3cd;
    color:#856404;
    padding:15px;
    border-radius:10px;
    border:1px solid #ffeeba;
    font-weight:500;
}

.mp-pages-box{
    /*margin-top:20px;*/
    background:#fff;
    padding:20px;
    border-radius:12px;
}

.mp-pages-box h3{
    margin-bottom:15px;
    font-size:16px;
}

.mp-pages-table{
    width:100%;
    border-collapse:collapse;
    border-radius: 10px;
    overflow: hidden;
}

.mp-pages-table th{
    background:#033a88;
    color:#fff;
    padding:10px;
    text-align:right;
}

.mp-pages-table td{
    padding:10px;
    border-bottom:1px solid #e5e7eb;
    font-size: 13px;
}

.mp-pages-table tr:hover{
    background:#eef2ff;
}






