.pns-auth-card {
    max-width: 450px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.pns-auth-card h2 {
    margin-bottom: 20px;
    color: #1a202c;
    text-align: center;
}
.pns-form-group {
    margin-bottom: 16px;
}
.pns-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #4a5568;
}
.pns-form-group input[type="text"],
.pns-form-group input[type="email"],
.pns-form-group input[type="password"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}
.pns-btn-primary {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.pns-btn-primary:hover {
    background: #0b5ed7;
}
.pns-alert-success {
    background: #d1e7dd;
    color: #0f5132;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}
.pns-alert-error {
    background: #f8d7da;
    color: #842029;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Dashboard Grid & Cards */
.pns-dashboard-wrapper { font-family: 'Segoe UI', Tahoma, sans-serif; }
.pns-dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pns-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pns-card { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.pns-payment-buttons { display: flex; gap: 10px; margin-top: 15px; }
.pns-btn-secondary { background: #6c757d; color: #fff; border: none; padding: 10px 15px; border-radius: 6px; cursor: pointer; }

/* Badges & Alerts */
.pns-membership-badge { padding: 6px 12px; border-radius: 20px; font-weight: bold; font-size: 13px; }
.pns-badge-active { background: #d1e7dd; color: #0f5132; }
.pns-badge-pending { background: #fff3cd; color: #664d03; }
.pns-badge-expired { background: #f8d7da; color: #842029; }
.pns-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; }
.pns-alert-warning { background: #fff3cd; color: #664d03; }
.pns-alert-danger { background: #f8d7da; color: #842029; }

/* Modal */
.pns-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.pns-modal-content { background: #fff; padding: 25px; border-radius: 10px; width: 100%; max-width: 450px; position: relative; }
.pns-modal-close { position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer; }
.pns-notices-list { list-style: none; padding: 0; }
.pns-notices-list li { border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 10px; }
.pns-notices-list .pns-date { font-size: 12px; color: #888; }