/* =========================================================================
   App Download Section
   ========================================================================= */
.sahwira-app-section {
    background: #020E51;
    padding: 80px 20px;
}

.sahwira-app-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left content */
.sahwira-app-content {
    flex: 1;
    color: #fff;
}

.sahwira-app-badge {
    display: inline-block;
    background: rgba(201,158,89,0.2);
    color: #c99e59;
    border: 1px solid #c99e59;
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.sahwira-app-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 12px;
}

.sahwira-app-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 28px;
}

.sahwira-app-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sahwira-app-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sahwira-app-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(201,158,89,0.15);
    border: 1px solid rgba(201,158,89,0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c99e59;
    font-size: 17px;
}

.sahwira-app-features li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sahwira-app-features li strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.sahwira-app-features li span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* Store buttons */
.sahwira-app-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sahwira-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #020E51 !important;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    transition: background 0.2s, transform 0.2s;
    border: 2px solid transparent;
}

.sahwira-store-btn:hover {
    background: #c99e59;
    color: #fff !important;
    transform: translateY(-2px);
}

.sahwira-store-btn i {
    font-size: 22px;
}

.sahwira-store-btn span {
    display: flex;
    flex-direction: column;
}

.sahwira-store-btn small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 1;
}

/* QR card */
.sahwira-app-qr-wrap {
    flex-shrink: 0;
}

.sahwira-app-qr-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 200px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.sahwira-app-qr-placeholder {
    width: 152px;
    height: 152px;
    margin: 0 auto 12px;
}

.sahwira-qr-svg {
    width: 100%;
    height: 100%;
}

.sahwira-qr-label {
    font-size: 14px;
    font-weight: 700;
    color: #020E51;
    margin: 0 0 4px;
}

.sahwira-qr-sub {
    font-size: 11px;
    color: #888;
    margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .sahwira-app-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .sahwira-app-features li {
        text-align: left;
    }
    .sahwira-app-store-buttons {
        justify-content: center;
    }
    .sahwira-app-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .sahwira-app-section {
        padding: 50px 16px;
    }
    .sahwira-app-title {
        font-size: 24px;
    }
    .sahwira-store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Main menu Logout link */
.sahwira-logout-menu a {
    color: #e74c3c !important;
    font-weight: 600;
}

.sahwira-logout-menu a:hover {
    color: #c0392b !important;
}

/* Hide theme page title banner on dashboard pages */
body.sahwira-dashboard .page-title-area {
    display: none !important;
}

.my-account {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}
.zita{
  color: #1a236c;
  line-height: 65px;
  font-weight: 400 !important;
  font-family: var(--e-global-body-font);
}
.zita:hover {
  color: #c99e59;
}
.tag{
	font-size:12px;
}
/* Form container */
#registration_form {
    width: 100%;
    max-width: 700px; /* Smaller width for a compact form */
    margin: 0 auto;
    padding: 10px;
}
#login_form {
    width: 100%;
    max-width: 500px; /* Smaller width for a compact form */
    margin: 0 auto;
    padding: 10px;
}
#verification_form {
    width: 100%;
    max-width: 500px; /* Smaller width for a compact form */
    margin: 0 auto;
    padding: 10px;
}
#btn_login{
  width: 100%;
}
/* Custom message styling */
        .registration-message {
            padding: 10px 35px 10px 15px;
            margin: 10px 0;
            border-radius: 6px;
            font-size: 13px;
            line-height: 1.4;
            font-weight: 500;
            position: relative;
        }
        .registration-message .msg-close {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: inherit;
            opacity: 0.6;
            padding: 0 4px;
            line-height: 1;
        }
        .registration-message .msg-close:hover {
            opacity: 1;
        }
        #bill-messages {
            position: sticky;
            top: 0;
            z-index: 100;
            margin-bottom: 15px;
        }

        /* Success message */
        .registration-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        /* Error message */
        .registration-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

/* Step container */
.form-step {
    display: none;
}

/* Show active step */
.form-step.active {
    display: block;
}

/* Input fields */
input[type="text"], input[type="email"], input[type="file"], input[type="password"], input[type="date"], textarea, select {
    width: 100%;
    padding: 5px;
    margin: 0px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

select{
  font-size: 13px;
}

/* Buttons */
button, input[type="submit"] {
    background-color: #020E51;
    color: white;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover, input[type="submit"]:hover {
    background-color: #c99e59;
}

.prev-step {
    background-color: #ccc;
    margin-right: 10px;
}

/* Navigation buttons layout */
.form-step button {
    margin-top: 20px;
}

/* Form headings */
.heading {
   font-family: sans-serif;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #333;

}

label {
    font-weight: bold;
    font-size: 12px;
    padding-bottom: 0px;
}
.error-message {
   color: red;
   font-size: 0.8em;
   margin-top: 5px;
}
/* Telephone Container for Select and Input */
 .telephone-container {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
 }

 .telephone-container select {
   padding: 5px;
   margin-right: 10px;
   width: 100px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 0.7em;
 }

 .telephone-container input {
   padding: 5px;
   width: 100%;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 0.9em;
 }
 /* General styling for the form result container */
#form-result {
padding: 15px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 8px;
max-width: 800px;
margin: 20px auto;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling the title */
#form-result h2 {
font-size: 1rem;
margin-bottom: 20px;
color: #333;
text-align: center;
}

/* Styling the list */
#form-result ul {
list-style: none;
padding: 0;
}

#form-result ul li {
font-size: 0.9rem;
padding: 8px;
margin-bottom: 12px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Styling for the field labels */
#form-result ul li strong {
font-weight: bold;
color: #333;
}

/* Responsive design for mobile screens */
@media (max-width: 767px) {
#form-result {
padding: 12px;
margin: 8px;
}

#form-result h2 {
font-size: 1rem;
}

#form-result ul li {
font-size: 0.8rem;
padding: 5px;
}

#form-result ul li strong {
font-size: 1rem;
}
}

/* For very small mobile screens */
@media (max-width: 480px) {
#form-result {
padding: 10px;
margin: 5px;
}

#form-result h2 {
font-size: 1rem;
}

#form-result ul li {
font-size: 0.7rem;
padding: 5px;
}

#form-result ul li strong {
font-size: 0.8rem;
}
}
/* Styles for email verification messages */
.verification-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 20px 20px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.verification-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 20px 20px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.verification-link {
    color: #007bff;
    text-decoration: none;
}
.small-link{
  font-size: 13px;
  font-weight: bold;
  color: #c99e59;
}
.verification-link:hover {
    text-decoration: underline;
}
.form-container-loc {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 20px;
}

.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group {
flex: 1 1 45%;
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 5px;
font-weight: bold;
}

.form-group input,
.form-group select {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 5px;
}

.phone-group {
flex: 1 1 45%;
display: flex;
flex-direction: column;
}

.phone-wrapper {
display: flex;
gap: 10px;
}

.phone-wrapper select {
width: 25%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

.phone-wrapper input {
width: 75%;
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}

@media (max-width: 767px) {
  .form-group {
    flex: 1 1 100%;
  }

  input[type="date"] {
    font-size: 16px;
    padding: 12px;
  }
}

/* ============================================
   DASHBOARD & ACCOUNT STYLES
   ============================================ */

/* Account Dashboard Layout */
.account-dashboard,
.account-dashboard * {
    font-family: Arial, Helvetica, sans-serif;
}

.account-dashboard {
    display: flex;
    min-height: 600px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.account-sidebar {
    width: 250px;
    background: #020E51;
    color: #fff;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #c99e59;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 10px;
}

/* Sidebar greeting */
.sidebar-greeting {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.3;
}

.sidebar-name {
    font-size: 16px;
    margin: 4px 0 0;
    color: #fff;
    font-weight: 600;
}

.verification-badge {
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.verification-badge.loaded {
    display: inline-flex;
}
.verification-badge i {
    font-size: 12px;
}
.verification-badge.verified {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}
.verification-badge.unverified {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}
.verification-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* Sidebar navigation */
.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.account-sidebar ul li a:hover,
.account-sidebar ul li.active a {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-left-color: #c99e59;
}

.account-sidebar ul li a i {
    margin-right: 12px;
    font-size: 15px;
    width: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.account-sidebar ul li.active a i,
.account-sidebar ul li a:hover i {
    color: #c99e59;
}

.sidebar-logout {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.sidebar-logout a {
    color: rgba(255,255,255,0.6) !important;
}

.sidebar-logout a:hover {
    color: #ff6b6b !important;
    background: rgba(255,0,0,0.1) !important;
}

.sidebar-logout a:hover i {
    color: #ff6b6b !important;
}

.account-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.content-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.content-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.content-header-icon {
    color: #c99e59;
    margin-right: 8px;
}

/* Dashboard welcome */
.dashboard-welcome h3 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 24px;
}

.content-body {
    padding: 30px;
    flex: 1;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
    max-width: 1100px;
}

.dashboard-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px;
    border: 1px solid #eee;
    min-width: 0;
    overflow: visible;
}

.dashboard-card h3 {
    margin: 0 0 16px;
    font-size: 16px;
    color: #333;
}

/* Quick Action Buttons */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 6px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
}

.action-btn:hover {
    border-color: #c99e59;
    box-shadow: 0 2px 8px rgba(201, 158, 89, 0.15);
    transform: translateY(-1px);
}

.action-icon-fa {
    font-size: 20px;
    margin-bottom: 6px;
}

.action-send { border-left: 3px solid #4CAF50; }
.action-send .action-icon-fa { color: #4CAF50; }
.action-bills { border-left: 3px solid #FF9800; }
.action-bills .action-icon-fa { color: #FF9800; }
.action-beneficiary { border-left: 3px solid #2196F3; }
.action-beneficiary .action-icon-fa { color: #2196F3; }
.action-rates { border-left: 3px solid #9C27B0; }
.action-transactions { border-left: 3px solid #607D8B; }
.action-transactions .action-icon-fa { color: #607D8B; }

/* Quick Send Beneficiaries */
.quick-send-list {
    margin-top: 16px;
}

/* SIP action button icon */
.action-btn .action-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 4px;
}
.action-sip {
    border-left: 3px solid #d4a843;
}

.quick-send-title {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin: 0 0 12px;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}
.quick-send-title i {
    color: #4CAF50;
    margin-right: 4px;
}
.quick-send-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.quick-send-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.25s;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    min-height: 120px;
    box-sizing: border-box;
}
.quick-send-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}
.quick-send-avatar-wrap {
    margin-bottom: 8px;
}
.quick-send-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.5);
}
.quick-send-name {
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.quick-send-btn {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    transition: background 0.2s;
}
.quick-send-card:hover .quick-send-btn {
    background: rgba(255,255,255,0.4);
}
.quick-send-viewall-icon {
    font-size: 20px;
    color: #fff;
}
.quick-send-viewall .quick-send-name {
    font-size: 11px;
    margin-bottom: 0;
}
.action-rates .action-icon-fa { color: #9C27B0; }

/* Quick Links card spans full width */
.dashboard-card:last-child {
    grid-column: 1 / -1;
}
.dashboard-card:last-child .account-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.dashboard-card:last-child .account-info p {
    margin: 0;
}

/* Dashboard card icons */
.dashboard-card h3 i {
    margin-right: 8px;
    color: #c99e59;
}

.account-info i {
    width: 18px;
    margin-right: 6px;
    color: #888;
}

.account-info a {
    color: #020E51;
    text-decoration: none;
}

.account-info a:hover {
    color: #c99e59;
}

.empty-state {
    color: #888;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
}

.empty-state i {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}

/* Account Info */
.account-info p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.account-info strong {
    color: #333;
}

/* Dashboard Transactions */
.dashboard-transactions {
    margin-top: 24px;
}

.view-all-link {
    float: right;
    font-size: 13px;
    color: #c99e59;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Loading text */
.loading-text {
    color: #888;
    font-style: italic;
    font-size: 14px;
    padding: 20px 0;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-top-color: #020E51;
    border-radius: 50%;
    animation: sahwira-spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes sahwira-spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TABLES
   ============================================ */

.sahwira-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sahwira-table thead {
    background: #020E51;
}

.sahwira-table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid #c99e59;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sahwira-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #444;
    text-align: left;
}
.actions-cell {
    white-space: nowrap;
}
.actions-cell .btn-small {
    margin-right: 4px;
}

.sahwira-table tbody tr:hover {
    background: #fafafa;
}

/* ============================================
   STATUS BADGES
   ============================================ */

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-active,
.status-completed,
.status-success,
.status-paid,
.status-sent-for-pay,
.status-processed,
.status-agent-ok,
.status-hq-ok,
.status-delivered,
.status-collected {
    background: #d4edda;
    color: #155724;
}

.status-pending,
.status-awaiting-payment,
.status-processing {
    background: #fff3cd;
    color: #856404;
}

.status-failed,
.status-cancelled,
.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-in-progress,
.status-sent {
    background: #d1ecf1;
    color: #0c5460;
}

/* ============================================
   BUTTONS
   ============================================ */

.sahwira-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #020E51;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.sahwira-btn:hover {
    background: #c99e59;
    color: #fff;
}

.sahwira-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.sahwira-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.sahwira-btn-secondary:hover {
    background: #ccc;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    background: #020E51;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
}

.btn-small:hover {
    background: #c99e59;
}
.btn-send {
    background: #4CAF50;
    text-decoration: none;
}
.btn-send:hover {
    background: #388E3C;
    color: #fff;
}

/* ============================================
   FORM SECTIONS
   ============================================ */

.beneficiary-section,
.send-money-section,
.bill-payment-section,
.transactions-section,
.rates-section,
.profile-section {
    max-width: 100%;
}

.section-actions {
    margin-bottom: 20px;
}

/* Slide-down form */
.form-slide {
    display: none;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.form-slide.active {
    display: block;
}

.form-section-heading {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 6px;
    margin: 20px 0 14px;
}

.form-section-note {
    font-size: 12px;
    color: #777;
    margin: -8px 0 14px;
    font-style: italic;
}
.form-subsection {
    background: #f9fafb;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
}
.form-subsection-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.form-subsection-title i {
    margin-right: 6px;
    color: #c99e59;
}
.form-subsection-note {
    font-size: 11px;
    color: #888;
    margin: 0 0 12px;
}

.form-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

/* Step headings */
.step-heading {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c99e59;
}

.step-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* ============================================
   SEND MONEY
   ============================================ */

.rate-display {
    background: #eef6ff;
    border: 1px solid #b8d4f0;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 14px;
    color: #1a5276;
}

.quote-summary {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.quote-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.quote-row:last-child {
    border-bottom: none;
}

.quote-total {
    font-weight: 700;
    font-size: 16px;
    color: #020E51;
    border-top: 2px solid #020E51;
    padding-top: 12px;
    margin-top: 4px;
}

.quote-receive {
    color: #2e7d32;
    font-weight: 600;
}

/* Payment Container (iframe) */
.payment-container {
    margin: 16px 0;
    min-height: 200px;
}

.payment-container iframe {
    border-radius: 6px;
}

/* Confirmation */
.confirmation-message {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.confirmation-message h3 {
    color: #2e7d32;
    margin-bottom: 12px;
}

.confirmation-message p {
    color: #555;
    font-size: 14px;
    margin: 6px 0;
}

/* ============================================
   BILL PAYMENTS
   ============================================ */

.policy-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0;
}

.policy-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.policy-row:last-child {
    border-bottom: none;
}

/* Send Money Progress Bar — same design as bill payment */
.sm-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 10px;
}

.sm-progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.sm-progress-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-size: 11px;
    font-weight: 700;
}

.sm-progress-step.active span {
    background: #020E51;
    color: #fff;
}

.sm-progress-step.active {
    color: #020E51;
}

.sm-progress-step.current span {
    background: #c99e59;
    color: #fff;
}

.sm-progress-step.current {
    color: #c99e59;
    font-weight: 600;
}

/* Bill Payment Progress Bar */
.bill-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 10px;
}

.bill-progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
}

.bill-progress-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    font-size: 11px;
    font-weight: 700;
}

.bill-progress-step.active span {
    background: #020E51;
    color: #fff;
}

.bill-progress-step.active {
    color: #020E51;
}

.bill-progress-step.current span {
    background: #c99e59;
    color: #fff;
}

.bill-progress-step.current {
    color: #c99e59;
    font-weight: 600;
}

/* Quote Card */
.quote-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 16px 0;
}

.quote-divider {
    border-bottom: 1px dashed #ccc !important;
    padding: 0 !important;
    margin: 4px 0;
}

/* Confirmation Details */
.confirmation-title {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
}

.confirmation-details {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin: 20px auto;
    max-width: 400px;
    text-align: left;
}

/* Bill Payment Info */
.bill-payment-info {
    text-align: center;
    margin: 12px 0;
    font-size: 14px;
}

.bill-payment-note {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.bill-payment-fallback {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.bank-transfer-details {
    background: #eef6ff;
    border: 1px solid #b8d4f0;
    border-radius: 8px;
    padding: 20px;
}

.bank-transfer-details h4 {
    margin: 0 0 12px;
    color: #1a5276;
}

.bank-transfer-details p {
    margin: 6px 0;
    font-size: 14px;
}

/* Transaction filter tabs */
.txn-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.txn-filter-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
}
.txn-search-wrap {
    position: relative;
}
.txn-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
}
#txn-search {
    padding: 6px 10px 6px 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    width: 220px;
    outline: none;
}
#txn-search:focus {
    border-color: #d4a843;
}
.txn-filter-btn {
    padding: 10px 24px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.txn-filter-btn:hover {
    color: #1a5276;
}
.txn-filter-btn.active {
    color: #1a5276;
    border-bottom-color: #d4a843;
}
.txn-ref {
    font-size: 12px;
    word-break: break-all;
}

/* Bill payment inner tabs */
.bill-inner-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}
.bill-tab-btn {
    padding: 10px 24px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.bill-tab-btn:hover {
    color: #1a5276;
}
.bill-tab-btn.active {
    color: #1a5276;
    border-bottom-color: #d4a843;
}
.bill-tab-content {
    display: none;
}
.bill-tab-content.active {
    display: block;
}

/* Payment option cards */
#nyaradzo-payment-options {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}
.payment-option-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 14px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
    cursor: pointer;
}
.payment-option-card.selected {
    border-color: #d4a843;
    background: #fdf8ed;
}
.payment-option-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    height: 100%;
}
.payment-option-body .payment-option-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-option-body strong {
    font-size: 12px;
    color: #333;
    white-space: nowrap;
}
.payment-option-body select {
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    min-width: 120px;
}
.payment-option-body .sahwira-btn-sm {
    flex-shrink: 0;
}
#premium-total-display {
    font-weight: 600;
    font-size: 12px;
    color: #1a5276;
    white-space: nowrap;
}
#pay-balance-amount {
    font-weight: 600;
    font-size: 12px;
    color: #1a5276;
    white-space: nowrap;
}

@media (max-width: 600px) {
    #nyaradzo-payment-options {
        flex-direction: column;
        gap: 12px;
    }
    .payment-option-body .payment-option-row {
        flex-wrap: wrap;
    }
}

.sahwira-btn-sm {
    padding: 4px 10px;
    font-size: 11px;
}

/* View button in history table */
.sahwira-btn-view {
    background: #1a5276;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.sahwira-btn-view:hover {
    background: #154360;
}
.sahwira-btn-pay {
    background: #e67e22;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.sahwira-btn-pay:hover {
    background: #d35400;
}

/* Modal */
.sahwira-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sahwira-modal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
.sahwira-modal-content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.sahwira-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.sahwira-modal-header h3 {
    margin: 0;
    font-size: 16px;
    color: #1a5276;
}
.sahwira-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    padding: 0 4px;
    line-height: 1;
}
.sahwira-modal-close:hover {
    color: #333;
}
.sahwira-modal-body {
    padding: 20px;
}

/* Detail card rows */
.bill-detail-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bill-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.bill-detail-row:last-child {
    border-bottom: none;
}
.bill-detail-label {
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
    margin-right: 12px;
}
.bill-detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-align: right;
    word-break: break-all;
}

.bill-history-section {
    margin-top: 0;
    padding-top: 0;
}
.bill-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.bill-history-header h3 {
    margin: 0;
}
.sahwira-btn-refresh {
    background: #1a5276;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sahwira-btn-refresh:hover {
    background: #154360;
}

/* ============================================
   EXCHANGE RATE CALCULATOR (Dashboard)
   ============================================ */

.calc-wrapper {
    padding: 4px 0 0;
}

.calc-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
}

.calc-input-group {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s;
}

.calc-input-group:focus-within {
    border-color: #c99e59;
    box-shadow: 0 0 0 2px rgba(201, 158, 89, 0.15);
}

.calc-input-group input {
    flex: 1;
    border: none !important;
    padding: 10px 12px !important;
    font-size: 15px;
    font-weight: 600;
    color: #020E51;
    margin: 0 !important;
    min-width: 0;
    outline: none;
    background: transparent;
}

.calc-input-group input[readonly] {
    background: #f8f9fa;
    color: #2e7d32;
}

.calc-input-group select {
    border: none !important;
    border-left: 1px solid #eee !important;
    padding: 10px 8px !important;
    font-size: 11px;
    font-weight: 600;
    color: #020E51;
    background: #f8f9fa;
    cursor: pointer;
    min-width: 76px;
    width: auto;
    margin: 0 !important;
    outline: none;
    flex-shrink: 0;
}

.calc-currency-label {
    border-left: 1px solid #eee;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #020E51;
    background: #f8f9fa;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.calc-swap {
    text-align: center;
    margin: 4px 0;
}

.calc-rate-info {
    margin-top: 12px;
    padding: 8px 12px;
    background: #eef6ff;
    border: 1px solid #b8d4f0;
    border-radius: 6px;
    font-size: 12px;
    color: #1a5276;
}

.calc-rate-info i {
    margin-right: 4px;
}

.calc-rate-info strong {
    color: #020E51;
    font-size: 14px;
}

.calc-updated {
    display: block;
    font-size: 10px;
    color: #888;
    font-weight: normal;
    margin-top: 2px;
}

.calc-rate-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #1a5276;
    margin-bottom: 4px;
}

.calc-rate-note {
    font-size: 10px;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}

.calc-rate-note i {
    margin-right: 3px;
}

.quote-note {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

.info-box {
    background: #eef6ff;
    border: 1px solid #b8d4f0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #1a5276;
    margin-bottom: 16px;
}

.info-box i { margin-right: 6px; }

.readonly-field {
    background: #f5f5f5;
    color: #666;
    cursor: default;
}

.field-hint {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    display: block;
}

.quote-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.payment-card-box {
    text-align: center;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    margin: 16px 0;
}

.payment-logo {
    margin-bottom: 16px;
}

.payment-message {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.payment-btn {
    font-size: 15px;
    padding: 12px 32px;
}

/* =========================================================
   Transactions tab
   ========================================================= */
.transactions-section .section-header {
    margin-bottom: 12px;
}

.transactions-section .section-header h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #1a1a2e;
}

.transactions-section .section-header p {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
}

.txn-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.txn-table th,
.txn-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.txn-table thead th {
    background: #f5f5f5;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.txn-table tbody tr:hover {
    background: #fafafa;
}

.country-flag {
    font-size: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.sahwira-btn-small {
    padding: 5px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #1a1a2e;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
}

.sahwira-btn-small:hover:not([disabled]) {
    background: #2d2d5e;
}

.sahwira-btn-small[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Transaction payment modal */
.txn-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.txn-modal-box {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 460px;
    margin: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.txn-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8e8e8;
    background: #f8f8f8;
}

.txn-modal-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.txn-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    padding: 0 4px;
}

.txn-modal-close:hover {
    color: #333;
}

#txn-payment-modal-body {
    padding: 20px;
}

.calc-send-btn {
    margin-top: 12px;
    display: inline-block;
    font-size: 13px;
    padding: 8px 18px;
}

.calc-send-btn i {
    margin-right: 6px;
}

/* ============================================
   RATES CALCULATOR
   ============================================ */

.rc-calculator,
.rc-rates-table-section {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.rc-header {
    background: #555;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
}

.rc-body {
    background: #f8f9fa;
    padding: 24px;
}

.rc-row {
    display: grid;
    gap: 20px;
    margin-bottom: 16px;
}

.rc-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.rc-row-2 {
    grid-template-columns: 1fr 1fr;
}

.rc-row-1 {
    grid-template-columns: 1fr;
    max-width: 300px;
}

.rc-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.rc-field select,
.rc-field input[type="text"] {
    width: 100%;
}

.rc-static-country {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.rc-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.rc-amount-group {
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.rc-amount-group input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    outline: none;
}

.rc-amount-group input:focus {
    box-shadow: none;
}

.rc-amount-group input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.rc-amount-group select {
    width: auto;
    min-width: 70px;
    border: none;
    border-left: 1px solid #ddd;
    padding: 10px 8px;
    font-size: 14px;
    background: #f8f8f8;
    outline: none;
    cursor: pointer;
    -webkit-appearance: auto;
}

.rc-field-btn {
    display: flex;
    align-items: flex-end;
}

.rc-send-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #b8c6e0;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.rc-send-btn:hover {
    background: #9bb0d4;
}

.rc-quote-details {
    margin-top: 8px;
}

.rc-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    font-size: 14px;
}

.rc-quote-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.rc-quote-item span {
    color: #666;
}

.rc-quote-item strong {
    color: #333;
}

.rates-updated {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
}

.rates-table-wrapper {
    overflow-x: auto;
}

.rates-table th,
.rates-table td {
    white-space: nowrap;
}

/* ============================================
   PROFILE
   ============================================ */

.profile-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-field {
    padding: 8px 0;
}

.profile-field label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.profile-field span {
    font-size: 14px;
    color: #333;
}

.field-hint {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.profile-card-header h3 {
    margin: 0;
}

.profile-section-block {
    margin-bottom: 20px;
}

.profile-section-block:last-child {
    margin-bottom: 0;
}

.profile-section-label {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e8e8e8;
}

.profile-field-wide {
    grid-column: 1 / -1;
}

.profile-id-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
}

.id-scan-view {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.id-scan-img {
    max-width: 100%;
    max-height: 240px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: block;
}

.id-scan-preview {
    margin-top: 8px;
}

.id-scan-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 6px;
    border: 1px solid #ddd;
    display: block;
}

.sahwira-btn-sm {
    padding: 6px 16px;
    font-size: 13px;
    border: 1px solid #020E51;
    background: #020E51;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.sahwira-btn-sm:hover:not([disabled]) {
    background: #030f6b;
}
.sahwira-btn-sm[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}

.sahwira-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 13px;
    color: #555;
}

.sahwira-table-controls {
    margin-bottom: 8px;
    font-size: 13px;
    color: #777;
}

.sahwira-btn-outline {
    background: transparent;
    color: #020E51;
    border: 1px solid #020E51;
}

.sahwira-btn-outline:hover {
    background: #020E51;
    color: #fff;
}

.profile-form-section {
    margin-bottom: 24px;
}

.profile-form-section-title {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.profile-form-full {
    grid-column: 1 / -1;
}

.profile-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.status-suspended {
    background: #f8d7da;
    color: #721c24;
}

/* ============================================
   AUTH / LOGIN
   ============================================ */

#login_form .form-links {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
}

#login_form .form-links a {
    color: #c99e59;
}

/* ============================================
   MESSAGE CONTAINER (AJAX messages)
   ============================================ */

.sahwira-message {
    padding: 10px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 13px;
}

.sahwira-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.sahwira-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sahwira-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .account-dashboard {
        flex-direction: column;
    }

    .account-sidebar {
        width: 100%;
    }

    .account-sidebar ul {
        display: flex;
        flex-wrap: wrap;
    }

    .account-sidebar ul li a {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px 8px;
        font-size: 12px;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex-direction: column;
    }

    .account-sidebar ul li.active a {
        border-left: none;
        border-bottom-color: #c99e59;
    }

    .account-sidebar ul li a i {
        margin-right: 0;
        margin-bottom: 4px;
        display: block;
    }

    .sidebar-header {
        padding: 16px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 12px;
    }

    .user-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin: 0;
    }

    .sidebar-greeting {
        display: none;
    }

    .content-body {
        padding: 16px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-actions {
        flex-direction: column;
    }

    .profile-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .sm-progress {
        gap: 4px;
    }

    .sm-progress-step {
        font-size: 10px;
        flex-direction: column;
        text-align: center;
    }

    .bill-progress {
        gap: 4px;
    }

    .bill-progress-step {
        font-size: 10px;
        flex-direction: column;
        text-align: center;
    }

    .quote-row {
        flex-direction: column;
        gap: 4px;
    }

    .rc-row-3 {
        grid-template-columns: 1fr;
    }

    .rc-row-2 {
        grid-template-columns: 1fr;
    }

    .rc-quote-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }

    .sahwira-table {
        font-size: 11px;
    }

    .sahwira-table th,
    .sahwira-table td {
        padding: 6px 8px;
    }

    .txn-table {
        font-size: 11px;
    }

    .txn-table th,
    .txn-table td {
        padding: 6px 8px;
    }

    .step-buttons {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }

    .content-header {
        padding: 12px 16px;
    }

    .content-header h2 {
        font-size: 16px;
    }
}

/* Password toggle */
.password-field {
    position: relative;
    display: flex;
    align-items: center;
}
.password-field input[type="password"],
.password-field input[type="text"] {
    width: 100%;
    padding-right: 40px;
}
.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    user-select: none;
    color: #666;
}

/* ==========================================================================
   PAYMENT COMPLETE (Trust Payments redirect landing)
   ========================================================================== */
.payment-complete-wrap {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
}
.payment-complete-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    max-width: 560px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
}
.pc-state .pc-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.pc-state-loading .pc-icon { color: #2196F3; }
.pc-state-success .pc-icon { color: #2e7d32; }
.pc-state-pending .pc-icon { color: #ed6c02; }
.pc-state-error   .pc-icon { color: #c62828; }
.pc-state-info    .pc-icon { color: #2196F3; }
.pc-state h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
}
.pc-state p {
    margin: 8px 0;
    color: #555;
    line-height: 1.5;
}
.pc-ref {
    background: #f5f7fa;
    padding: 10px 14px;
    border-radius: 6px;
    display: inline-block;
    margin: 12px 0;
    font-family: monospace;
}
.pc-details {
    margin-top: 20px;
}
.pc-details-table {
    text-align: left;
    background: #f5f7fa;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 12px;
}
.pc-details-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e6e9ee;
}
.pc-details-row:last-child { border-bottom: none; }
.pc-details-row span { color: #666; }
.pc-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
