:root {

  --rp-primary: linear-gradient(90deg, #002049 0%, #1a7949 50%, #8373a1 100%);
  --rp-secondary: #209b5a; 
  --rp-primary-dark: #209b5a;
  --rp-primary-light: #eef2ff;

}

body.woocommerce-account {
  background: #f9fafb;
}

.rp-account-wrap {
  padding-top: 28px;
  padding-bottom: 48px;
}

.rp-account-header {
  margin-bottom: 24px;
}

.rp-account-subtitle {
  margin: 0;
  color: #6b7280;
  font-weight: 500;
}

.rp-account-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .rp-account-grid {
    grid-template-columns: 1fr;
  }
}

.rp-account-sidebar,
.rp-account-content {
  min-height: 100%;
}

.rp-account-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rp-account-nav li + li {
  margin-top: 8px;
}

.rp-account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #374151;
  font-weight: 700;
  transition: all .15s ease;
}

.rp-account-nav a:hover {
  background: #f3f4f6;
  color: #111827;
}

.rp-account-nav li.is-active a {
  background: var(--rp-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(102, 126, 234, .25);
}

.rp-account-nav-icon {
  width: 22px;
  text-align: center;
  font-size: 16px;
}

.rp-account-section-head {
  margin-bottom: 20px;
}

.rp-account-section-head h2 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: #111827;
}

.rp-account-section-head p {
  margin: 0;
  color: #6b7280;
}

.rp-orders-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.rp-orders-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 !important;
}

.rp-orders-table thead th {
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 12px 10px;
  text-align: left;
  font-size: 13px;
  color: #6b7280;
  font-weight: 800;
}

.rp-orders-table tbody td {
  border: 0 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 18px 10px;
  vertical-align: middle;
}

@media (min-width: 769px) {
table.shop_table_responsive tr td {
    place-items: normal !important;
}
table.shop_table_responsive tr td {
    text-align: unset !important;
}
}

.rp-order-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-order-number {
  font-weight: 900;
  color: #111827;
  font-size: 15px;
}

.rp-order-items-count {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.rp-order-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.rp-status-completed {
  background: #dcfce7;
  color: #166534;
}

.rp-status-processing {
  background: #dbeafe;
  color: #1d4ed8;
}

.rp-status-onhold {
  background: #fef3c7;
  color: #92400e;
}

.rp-status-pending {
  background: #f3f4f6;
  color: #4b5563;
}

.rp-status-failed {
  background: #fee2e2;
  color: #b91c1c;
}

.rp-status-default {
  background: #f3f4f6;
  color: #374151;
}

.rp-order-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
.rp-order-actions {
  display: unset !important;
}
}

.rp-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: all .15s ease;
  background: #f3f4f6;
  color: #111827;
  margin-bottom: 8px;
  margin-left: 6px;
}

.rp-order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, .08);
}

.rp-order-btn-view,
.rp-order-btn-pay {
  background: var(--rp-primary);
  color: #fff;
}

.rp-order-btn-cancel {
  background: #fee2e2;
  color: #b91c1c;
}

.rp-order-btn-reorder {
  background: #FF9800;
  color: #ffffff;
}

.rp-empty-state {
  text-align: center;
  padding: 40px 20px;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
  background: #fff;
}

.rp-empty-state-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.rp-empty-state h3 {
  margin: 0 0 8px;
  font-weight: 900;
  color: #111827;
}

.rp-empty-state p {
  margin: 0 0 18px;
  color: #6b7280;
}

.rp-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  background: var(--rp-primary);
  color: #fff;
}

.rp-primary-btn:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .rp-account-content {
    padding: 20px;
  }

  .rp-orders-table thead {
    display: none;
  }

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

  .rp-orders-table td {
    border: 0 !important;
    padding: 8px 0 !important;
  }

  .rp-orders-table td::before {
    content: attr(data-title);
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 800;
    margin-bottom: 4px;
  }
}

.rp-orders-table tr {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
}

.rp-dashboard-wrap {
  width: 100%;
}

.rp-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .rp-dashboard-cards {
    grid-template-columns: 1fr;
  }
}

.rp-dashboard-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  transition: all .15s ease;
  color: inherit;
}

.rp-dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
  border-color: rgba(102,126,234,.35);
}

.rp-dashboard-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.rp-dashboard-card-content h3 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 900;
  color: #111827;
}

.rp-dashboard-card-content p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.rp-dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .rp-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.rp-dashboard-panel {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}

.rp-dashboard-panel-head {
  margin-bottom: 16px;
}

.rp-dashboard-panel-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.rp-dashboard-order-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-dashboard-order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.rp-dashboard-order-line span:first-child {
  color: #6b7280;
  font-weight: 700;
}

.rp-dashboard-order-line strong {
  color: #111827;
  font-weight: 900;
  text-align: right;
}

.rp-dashboard-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rp-dashboard-addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.rp-dashboard-address-box {
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #eef2f7;
}

.rp-dashboard-address-box h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
  color: #111827;
}

.rp-dashboard-address-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.rp-empty-state-small {
  padding: 28px 18px;
}

.rp-view-order-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:30px;
}

@media(max-width:900px){
.rp-view-order-grid{
grid-template-columns:1fr;
}
}

.rp-view-order-panel{
background:#fff;
border:1px solid #e5e7eb;
border-radius:16px;
padding:20px;
}

.rp-order-meta{
display:flex;
flex-direction:column;
gap:10px;
}

.rp-order-meta-line{
display:flex;
justify-content:space-between;
padding-bottom:8px;
border-bottom:1px solid #f1f5f9;
}

.rp-view-order-products{
margin-top:20px;
}

.rp-view-order-table{
width:100%;
border-collapse:collapse;
}

.rp-view-order-table th{
text-align:left;
border-bottom:1px solid #e5e7eb;
padding:10px;
font-size:13px;
color:#6b7280;
}

.rp-view-order-table td{
padding:14px 10px;
border-bottom:1px solid #f1f5f9;
}

.rp-view-product-box{
display:flex;
align-items:center;
gap:12px;
}

.rp-view-product-img img{
width:50px;
height: 100%;
border-radius:8px;
}

.rp-view-order-addresses{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

@media(max-width:900px){
.rp-view-order-addresses{
grid-template-columns:1fr;
}
}

.rp-view-address h4{
margin-bottom:10px;
font-size:16px;
}

.rp-order-totals-table{
width:100%;
margin-top:20px;
}

.rp-order-totals-table th{
text-align:left;
padding:10px 0;
color:#6b7280;
}

.rp-order-totals-table td{
text-align:right;
font-weight:700;
}

.rp-tracking-panel{
margin-top:20px;
}

.rp-tracking-box{
display:flex;
flex-direction:column;
gap:12px;
}

.rp-tracking-row{
display:flex;
justify-content:space-between;
padding-bottom:10px;
border-bottom:1px solid #f1f5f9;
font-weight:600;
}

.rp-tracking-btn{
display:inline-block;
margin-top:10px;
padding:12px 20px;
border-radius:12px;
background:linear-gradient(135deg,#667eea,#764ba2);
color:#fff;
font-weight:700;
text-decoration:none;
text-align:center;
}

.rp-tracking-btn:hover{
transform:translateY(-1px);
box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.rp-order-tracking-mini {
  margin-top: 10px;
  width: 100%;
}

.rp-order-tracking-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 6px;
}

.rp-order-btn-tracking {
  background: #ff9800;
  color: #ffffff;
}

.rp-view-order-products,
.rp-view-order-totals {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.rp-view-order-products h3,
.rp-view-order-totals h3,
.rp-view-order-panel h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.rp-view-order-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.rp-view-order-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 !important;
  background: transparent;
}

.rp-view-order-table thead th {
  text-align: left;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #6b7280;
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: transparent;
}

.rp-view-order-table tbody td {
  padding: 16px 10px;
  border: 0 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle;
  background: transparent;
}

.rp-view-order-table tbody tr:last-child td {
  border-bottom: 0 !important;
}

.rp-view-product-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rp-view-product-img {
  width: 56px;
  min-width: 56px;
}

.rp-view-product-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.rp-view-product-info strong {
  color: #111827;
  font-weight: 900;
  line-height: 1.3;
}

.rp-order-totals-table {
  width: 100%;
  border-collapse: collapse;
  border: 0 !important;
}

.rp-order-totals-table th,
.rp-order-totals-table td {
  padding: 12px 0;
  border: 0 !important;
  border-bottom: 1px solid #f1f5f9 !important;
}

.rp-order-totals-table th {
  text-align: left;
  color: #6b7280;
  font-weight: 800;
}

.rp-order-totals-table td {
  text-align: right;
  font-weight: 800;
  color: #111827;
}

.rp-order-totals-table tr:last-child th,
.rp-order-totals-table tr:last-child td {
  border-bottom: 0 !important;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 900;
}

.rp-order-totals-table tr:last-child td .amount,
.rp-order-totals-table tr:last-child td bdi {
  color: #29b96d;
}

@media (max-width: 768px) {
  .rp-view-order-table thead {
    display: none;
  }

  .rp-view-order-table,
  .rp-view-order-table tbody,
  .rp-view-order-table tr,
  .rp-view-order-table td {
    display: block;
    width: 100%;
  }

  .rp-view-order-table tr {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .rp-view-order-table tbody tr:last-child {
    border-bottom: 0;
  }

  .rp-view-order-table td {
    padding: 8px 0;
    border: 0 !important;
  }

  .rp-view-order-table td::before {
    content: attr(data-title);
    display: block;
    font-size: 12px;
    color: #6b7280;
    font-weight: 800;
    margin-bottom: 4px;
  }
}

/* ADDRESS */
.rp-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .rp-address-grid {
    grid-template-columns: 1fr;
  }
}
.rp-address-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.rp-address-card-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}
.rp-address-card-body {
  color: #4b5563;
  line-height: 1.6;
}

/* DOWNLOADS */
.rp-downloads-list {
  display: grid;
  gap: 16px;
}
.rp-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
@media (max-width: 768px) {
  .rp-download-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.rp-download-main {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rp-download-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.rp-download-content h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 900;
  color: #111827;
}
.rp-download-content p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

/* EDIT ACCOUNT */
.rp-account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 768px) {
  .rp-account-form-grid {
    grid-template-columns: 1fr;
  }
}
.rp-form-help {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}
.rp-account-password-box {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f9fafb;
}
.rp-account-password-box legend {
  padding: 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: #111827;
}

/* Woo forms consistency */
body.woocommerce-account .woocommerce-form-row label,
body.woocommerce-account .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin: 0 0 6px;
}

body.woocommerce-account input.input-text,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="password"],
body.woocommerce-account textarea,
body.woocommerce-account select {
  width: 100%;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  min-height: 46px;
  background: #fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}

body.woocommerce-account input:focus,
body.woocommerce-account textarea:focus,
body.woocommerce-account select:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102,126,234,.12);
  outline: none !important;
}

/* FORM EDIT ADDRESS */
.rp-edit-address-card {
  padding: 24px;
}

.rp-edit-address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

@media (max-width: 768px) {
  .rp-edit-address-grid {
    grid-template-columns: 1fr;
  }
}

.rp-edit-address-grid .form-row-wide {
  grid-column: span 2;
}

.rp-edit-address-grid .form-row-first,
.rp-edit-address-grid .form-row-last {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .rp-edit-address-grid .form-row-wide,
  .rp-edit-address-grid .form-row-first,
  .rp-edit-address-grid .form-row-last {
    grid-column: span 1;
  }
}

.rp-edit-address-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* AUTH PREMIUM LAYOUT */
.rp-auth-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .rp-auth-layout {
    grid-template-columns: 1fr;
  }
}

.rp-auth-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  transition: all .15s ease;
  color: inherit;
}

.rp-auth-forms {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
.rp-auth-forms {
    display: grid;
}
}

.rp-auth-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #209b5a21;
  color: var(--rp-secondary);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
  width: fit-content;
}

.rp-auth-hero-text {
  margin: 0 0 24px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}

.rp-auth-benefits {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.rp-auth-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #eef2f7;
}

.rp-auth-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.rp-auth-benefit h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 900;
  color: #111827;
}

.rp-auth-benefit p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.rp-auth-card {
  padding: 28px;
  border-radius: 18px;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  transition: all .15s ease;
  color: inherit;
}

.rp-auth-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.rp-auth-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.rp-auth-card-login .rp-auth-icon {
  background: #eef2ff;
}

.rp-auth-card-register .rp-auth-icon {
  background: #f5f3ff;
}

.rp-auth-title {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  color: #111827;
}

.rp-auth-card-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.rp-auth-submit {
  width: 100% !important;
  min-height: 52px;
  margin-top: 12px;
  border: 0 !important;
  border-radius: 12px !important;
  font-weight: 900;
  font-size: 15px;
}

.rp-auth-remember {
  margin: 6px 0 6px;
}

.rp-auth-remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 700;
}

.rp-auth-lost-password {
  margin: 14px 0 0 !important;
  text-align: center;
}

.rp-auth-lost-password a {
  color: var(--rp-secondary);
  font-weight: 700;
  text-decoration: none;
}

.rp-auth-lost-password a:hover {
  text-decoration: underline;
}

.rp-auth-note {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 14px;
}

.rp-auth-card .woocommerce-form-row {
  margin-bottom: 14px !important;
}

.rp-auth-card .woocommerce-form-row:last-of-type {
  margin-bottom: 0 !important;
}

.rp-auth-layout-single {
  grid-template-columns: 1.05fr 1fr;
}

@media (max-width: 992px) {
  .rp-auth-layout-single {
    grid-template-columns: 1fr;
  }
}

body.woocommerce-lost-password .woocommerce,
body.woocommerce-account .woocommerce-ResetPassword {
  margin: 0;
}

.rp-support-panel {
  margin-top: 20px;
}

.rp-support-text {
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.5;
}

.rp-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transition: all .15s ease;
}
@media (min-width: 769px) {
.rp-whatsapp-btn {
margin-top: 87px;	
}
}

.rp-whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, .22);
}

.rp-whatsapp-btn-icon {
  font-size: 18px;
  line-height: 1;
}

.rp-whatsapp-number {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
  text-align: center;
}

nav.woocommerce-MyAccount-navigation.rp-account-nav {
    display: block;
    position: sticky;
    top: 200px;
    align-self: start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
}

h1.rp-pc-h1.rp-pc-gradient-text {
    background: linear-gradient(90deg, #002049 0%, #1a7949 50%, #8373a1 100%);
    display: inline-block;
    position: relative;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans';
    padding-left: 0px;
    border-radius: 10px;
    padding: 0px 10px;
}

.rp-account-nav-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
}

.rp-account-nav-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800 !important;
  background: #fee2e2;
  color: #b91c1c !important;
  transition: all .15s ease;
}

.rp-account-nav-logout:hover {
  background: #fecaca !important;
  color: #991b1b !important;
}

.rp-account-nav-icon-svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rp-account-nav-icon-svg svg {
  display: block;
}

.rp-logout-toast{
            position: fixed;
            top: 28px;
            right: 28px;
            z-index: 999999;
            display: flex;
            align-items: center;
            gap: 14px;
            width: min(380px, calc(100vw - 32px));
            padding: 16px 18px;
            background: #ffffff;
            border: 1px solid rgba(17,24,39,.08);
            border-radius: 18px;
            box-shadow: 0 20px 50px rgba(17,24,39,.14);
            color: #111827;
            opacity: 0;
            transform: translateY(-12px) scale(.98);
            animation: rpToastIn .42s cubic-bezier(.2,.8,.2,1) forwards;
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.rp-logout-toast-icon{
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 999px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #16a34a;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 24px rgba(34,197,94,.28);
            animation: rpToastIconPop .5s cubic-bezier(.2,.8,.2,1) .08s both;
}

.rp-logout-toast-icon svg{
            display: block;
            color: #22c55e;
}

.rp-logout-toast-content{
            flex: 1;
            min-width: 0;
}

.rp-logout-toast-title{
            font-size: 14px;
            line-height: 1.2;
            font-weight: 900;
            color: #111827;
            margin: 0 0 3px;
}

.rp-logout-toast-text{
            font-size: 13px;
            line-height: 1.4;
            color: #6b7280;
            margin: 0;
}

.rp-logout-toast-close{
            appearance: none;
            border: 0;
            background: transparent;
            color: #9ca3af;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            padding: 0;
            width: 26px;
            height: 26px;
            border-radius: 8px;
            transition: background .15s ease, color .15s ease;
}

.rp-logout-toast-close:hover{
            background: #f3f4f6;
            color: #374151;
}

.rp-logout-toast.is-hiding{
            animation: rpToastOut .28s ease forwards;
}

@keyframes rpToastIn{
            to{
                opacity: 1;
                transform: translateY(0) scale(1);
            }
}

@keyframes rpToastOut{
            to{
                opacity: 0;
                transform: translateY(-8px) scale(.98);
            }
}

@keyframes rpToastIconPop{
            0%{
                transform: scale(.65);
                opacity: 0;
            }
            70%{
                transform: scale(1.08);
                opacity: 1;
            }
            100%{
                transform: scale(1);
                opacity: 1;
            }
}

@media (max-width: 768px){
            .rp-logout-toast{
                top: 16px;
                right: 16px;
                left: 16px;
                width: auto;
                border-radius: 16px;
                padding: 14px 16px;
            }
}