 .myaccount-container {
            /* max-width: 1200px; */
            margin: 40px auto;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        .myaccount-header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: white;
            padding: 40px;
            text-align: center;
        }
        .myaccount-avatar {
            width: 100px;
            height: 100px;
            background: #4caf50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 48px;
            color: white;
        }
        .myaccount-header h2 {
            font-size: 24px;
            margin-bottom: 10px;
            color:white;
        }
        .myaccount-header p {
            opacity: 0.8;
        }
        .myaccount-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px;
        }
        .myaccount-sidebar {
            flex: 1;
            min-width: 250px;
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            margin-right: 30px;
        }
        .myaccount-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .myaccount-sidebar li {
            margin-bottom: 10px;
        }
        .myaccount-sidebar a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none !important;
            border-radius: 10px;
            transition: all 0.2s;
        }
        .myaccount-sidebar a i {
            margin-right: 12px;
            width: 20px;
            color: #4caf50;
        }
        .myaccount-sidebar a:hover {
            background: #e8f5e9;
            color: #2c3e50;
        }
        .myaccount-sidebar .active {
            background: #e8f5e9;
            color: #4caf50;
            font-weight: 600;
        }
        .myaccount-main {
            flex: 3;
            min-width: 300px;
        }
        .myaccount-card {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .myaccount-card h3 {
            margin-top: 0;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
            color: #1a1a2e;
        }
        .myaccount-card h3 i {
            margin-right: 10px;
            color: #4caf50;
        }
        .info-row {
            display: flex;
            margin-bottom: 15px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        .info-label {
            width: 120px;
            font-weight: 600;
            color: #555;
        }
        .info-value {
            flex: 1;
            color: #333;
        }
        .stats-grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .stat-box {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
        }
        .stat-box i {
            font-size: 32px;
            margin-bottom: 10px;
        }
        .stat-box .number {
            font-size: 28px;
            font-weight: bold;
        }
        .stat-box .label {
            font-size: 14px;
            opacity: 0.9;
        }
        .myaccount-logout {
            background: #fef2f2;
            color: #dc2626;
            border: none;
            width: 100%;
            text-align: left;
        }
        .myaccount-logout:hover {
            background: #fee2e2;
        }
        .myaccount-login-required {
            text-align: center;
            padding: 60px;
            background: #fff;
            border-radius: 16px;
            max-width: 500px;
            margin: 80px auto;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .myaccount-login-required i {
            font-size: 60px;
            color: #4caf50;
            margin-bottom: 20px;
        }
        .myaccount-login-btn {
            display: inline-block;
            background: #4caf50;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .myaccount-content {
                flex-direction: column;
            }
            .myaccount-sidebar {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }


        .submission-form {
                margin-top: 20px;
            }
            .form-row {
                display: flex;
                gap: 20px;
                margin-bottom: 20px;
                flex-wrap: wrap;
            }
            .form-group {
                flex: 1;
                min-width: 250px;
            }
            .form-group label {
                display: block;
                margin-bottom: 8px;
                font-weight: 600;
                color: #333;
            }
            .form-group label i {
                margin-right: 8px;
                color: #4caf50;
            }
            .form-group input, 
            .form-group select, 
            .form-group textarea {
                width: 100%;
                padding: 10px 12px;
                border: 1px solid #ddd;
                border-radius: 8px;
                font-size: 14px;
            }
            .form-group input:focus, 
            .form-group select:focus, 
            .form-group textarea:focus {
                outline: none;
                border-color: #4caf50;
                box-shadow: 0 0 0 2px rgba(76,175,80,0.1);
            }
            .currency-group {
                display: flex;
                gap: 10px;
            }
            .currency-group input {
                flex: 2;
            }
            .currency-group select {
                flex: 1;
            }
            .submit-btn {
                background: #4caf50;
                color: white;
                border: none;
                padding: 14px 30px;
                border-radius: 8px;
                font-size: 16px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.2s;
            }
            .submit-btn:hover {
                background: #45a049;
                transform: translateY(-2px);
            }
            .required-star {
                color: red;
                margin-left: 4px;
            }
            @media (max-width: 768px) {
                .form-row {
                    flex-direction: column;
                }
            }


            .sp-generate-payment-btn{
                background:#000;
                color:#fff;
                border:none;
                padding:12px 20px;
                cursor:pointer;
                border-radius:5px;
            }

.sp-modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

.sp-modal-content{
    background:#fff;
    width:500px;
    max-width:95%;
    margin:5% auto;
    padding:25px;
    border-radius:10px;
    position:relative;
}

.sp-close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:25px;
    cursor:pointer;
}

.sp-form-group{
    margin-bottom:15px;
}

.sp-form-group label{
    display:block;
    margin-bottom:5px;
}

.sp-form-group input,
.sp-form-group select,
.sp-form-group textarea{
    width:100%;
    padding:10px;
}

.sp-submit-btn{
    background:green;
    color:#fff;
    border:none;
    padding:12px 20px;
    cursor:pointer;
    width:100%;
}


/* Wrapper */
.sp-payment-links-wrapper{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    margin-top:30px;
    overflow:hidden;
}

/* Heading */
.sp-payment-links-wrapper h3{
    font-size:24px;
    margin-bottom:20px;
    color:#111827;
    font-weight:700;
}

/* Table Responsive */
.sp-table-responsive{
    overflow-x:auto;
}

/* Table */
.sp-payment-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0 12px;
}

/* Table Head */
.sp-payment-table thead th{
    background:#111827;
    color:#fff;
    padding:16px;
    font-size:14px;
    font-weight:600;
    border:none;
    white-space:nowrap;
}

.sp-payment-table thead th:first-child{
    border-radius:12px 0 0 12px;
}

.sp-payment-table thead th:last-child{
    border-radius:0 12px 12px 0;
}

/* Table Body */
.sp-payment-table tbody tr{
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:0.3s;
}

.sp-payment-table tbody tr:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* Table Data */
.sp-payment-table td{
    padding:18px 16px;
    border:none;
    font-size:14px;
    color:#374151;
    vertical-align:middle;
    background:#fff;
}

.sp-payment-table td:first-child{
    border-radius:12px 0 0 12px;
}

.sp-payment-table td:last-child{
    border-radius:0 12px 12px 0;
}

/* Payment ID */
.sp-payment-id{
    font-weight:600;
    color:#111827;
}

/* Amount */
.sp-payment-amount{
    font-size:16px;
    font-weight:700;
    color:#000;
}

/* Status Badge */
.sp-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    text-transform:capitalize;
}

/* Created */
.sp-status.created{
    background:rgba(255,152,0,0.12);
    color:#ff9800;
}

/* Paid */
.sp-status.paid{
    background:rgba(34,197,94,0.12);
    color:#16a34a;
}

/* Cancelled */
.sp-status.cancelled{
    background:rgba(239,68,68,0.12);
    color:#dc2626;
}

/* Payment Button */
.sp-payment-link-btn{
    display:inline-block;
    padding:10px 16px;
    background:#111827;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:0.3s;
}

.sp-payment-link-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* Empty Message */
.sp-empty-payment{
    text-align:center;
    padding:40px 20px;
    background:#f9fafb;
    border-radius:16px;
    color:#6b7280;
    font-size:15px;
}

/* Mobile */
@media(max-width:768px){

    .sp-payment-table thead{
        display:none;
    }

    .sp-payment-table,
    .sp-payment-table tbody,
    .sp-payment-table tr,
    .sp-payment-table td{
        display:block;
        width:100%;
    }

    .sp-payment-table tr{
        margin-bottom:20px;
        border-radius:16px;
        overflow:hidden;
    }

    .sp-payment-table td{
        padding:14px 16px;
        text-align:right;
        position:relative;
        border-bottom:1px solid #f1f1f1;
    }

    .sp-payment-table td:last-child{
        border-bottom:none;
    }

    .sp-payment-table td::before{
        content:attr(data-label);
        position:absolute;
        left:16px;
        font-weight:600;
        color:#111827;
        text-align:left;
    }

}


/* Wrapper */
.sp-table-wrapper{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    margin:30px 0;
}

/* Header */
.sp-table-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.sp-table-header h2{
    margin:0;
    font-size:28px;
    color:#111827;
    font-weight:700;
}

.sp-table-header p{
    margin:8px 0 0;
    color:#6b7280;
    font-size:14px;
}

/* Button */
.sp-table-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.sp-table-btn:hover{
    background:#2563eb;
    color:#fff;
}

/* Responsive */
.sp-table-responsive{
    overflow-x:auto;
}

/* Table */
.sp-modern-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    min-width:900px;
}

/* Table Head */
.sp-modern-table thead th{
    background:#f3f4f6;
    color:#111827;
    padding:18px 16px;
    text-align:left;
    font-size:14px;
    font-weight:700;
    border-bottom:1px solid #e5e7eb;
    white-space:nowrap;
}

/* Table Body */
.sp-modern-table tbody tr{
    transition:0.3s;
}

.sp-modern-table tbody tr:hover{
    background:#f9fafb;
}

/* Table Data */
.sp-modern-table tbody td{
    padding:18px 16px;
    border-bottom:1px solid #f1f1f1;
    color:#374151;
    font-size:14px;
    vertical-align:middle;
}

/* Status Badge */
.sp-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

/* Success */
.sp-badge.success{
    background:rgba(34,197,94,0.12);
    color:#16a34a;
}

/* Pending */
.sp-badge.pending{
    background:rgba(245,158,11,0.12);
    color:#d97706;
}

/* Failed */
.sp-badge.failed{
    background:rgba(239,68,68,0.12);
    color:#dc2626;
}

/* Action Buttons */
.sp-action-btns{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.sp-action-btns a{
    text-decoration:none;
    padding:8px 14px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
    transition:0.3s;
}

/* View */
.sp-action-btns .view{
    background:rgba(37,99,235,0.12);
    color:#2563eb;
}

/* Edit */
.sp-action-btns .edit{
    background:rgba(34,197,94,0.12);
    color:#16a34a;
}

/* Delete */
.sp-action-btns .delete{
    background:rgba(239,68,68,0.12);
    color:#dc2626;
}

.sp-action-btns a:hover{
    transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){

    .sp-table-wrapper{
        padding:18px;
    }

    .sp-table-header{
        flex-direction:column;
        align-items:flex-start;
    }

}

 .publications-table-wrapper 
 {
    overflow-x: auto;
}
.publications-table {
    width: 100%;
    border-collapse: collapse;
}
.publications-table th,
.publications-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
.publications-table th {
    background: #f5f5f5;
    font-weight: 600;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.status-pending {
    background: #fff3cd;
    color: #856404;
}
.status-approved {
    background: #d4edda;
    color: #155724;
}
.status-rejected {
    background: #f8d7da;
    color: #721c24;
}
.action-buttons {
    display: flex;
    gap: 8px;
}
.btn-edit, .btn-delete, .btn-view {
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
}
.btn-edit {
    background: #4caf50;
    color: white;
}
.btn-edit:hover {
    background: #45a049;
}
.btn-delete {
    background: #f44336;
    color: white;
}
.btn-delete:hover {
    background: #da190b;
}
.btn-view {
    background: #2196f3;
    color: white;
}
.btn-view:hover {
    background: #0b7dda;
}
.search-box {
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}
.search-box input {
    width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


.sp-payment-success,
.sp-payment-cancelled,
.sp-payment-expired,
.sp-payment-pending{
    max-width:600px;
    margin:60px auto;
    padding:40px;
    border-radius:18px;
    text-align:center;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.sp-payment-success{
    border-top:6px solid #16a34a;
}

.sp-payment-cancelled{
    border-top:6px solid #dc2626;
} 

.sp-payment-expired{
    border-top:6px solid #f59e0b;
}

.sp-payment-pending{
    border-top:6px solid #2563eb;
}

.sp-payment-success h2,
.sp-payment-cancelled h2,
.sp-payment-expired h2,
.sp-payment-pending h2{
    margin-bottom:15px;
    font-size:30px;
}

.sp-payment-success p,
.sp-payment-cancelled p,
.sp-payment-expired p,
.sp-payment-pending p{
    color:#6b7280;
    font-size:16px;
}

 .comment-item, .link-item, .reminder-item {
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.table-responsive{
    width:100%;
    overflow-x:auto;
}

.table-responsive table{
    width:100%;
    min-width:800px;
    border-collapse:collapse;
}

@media (min-width: 922px) {
    .ast-container {
        max-width: 1500px !important;
    }
} 