/* Frontend Portal Styles */
.b2b-registration-card {
    background: #ffffff;
    border: 1px solid #e3e8ee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 20px auto;
}
.b2b-form-row { margin-bottom: 20px; }
.b2b-form-row label {
    display: block;
    font-weight: 600;
    color: #1a1f36;
    margin-bottom: 8px;
    font-size: 14px;
}
.b2b-form-row input[type="text"],
.b2b-form-row input[type="email"],
.b2b-form-row input[type="url"],
.b2b-form-row input[type="tel"],
.b2b-form-row input[type="number"],
.b2b-form-row select,
.b2b-form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 14px;
    color: #1a1f36;
    background: #ffffff;
}
.b2b-form-row textarea {
    height: 100px;
    resize: vertical;
}
.b2b-form-row.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.b2b-form-row.checkbox-row input { margin-top: 3px; }
.b2b-submit-btn {
    background: #00d4aa;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
}
.b2b-submit-btn:hover { background: #00b894; }
.b2b-portal-container { padding: 10px 0; }
.b2b-wallet-hero {
    background: #1a1f36;
    color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.b2b-wallet-hero h2 { color: #ffffff; margin: 0 0 10px; }
.b2b-wallet-hero p { color: #a3acb9; margin: 0; max-width: 500px; }
.balance-title {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #00d4aa;
    font-weight: 700;
}
.balance-display { font-size: 36px; font-weight: 700; color: #ffffff; }
.b2b-data-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.b2b-data-table th, .b2b-data-table td {
    border-bottom: 1px solid #e3e8ee;
    padding: 12px;
    text-align: left;
}
.b2b-data-table th { background: #f8f9fa; color: #1a1f36; font-weight: 600; }
.b2b-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}
.b2b-badge.credit { background: #e2f5ec; color: #107c41; }
.b2b-badge.debit { background: #fde8e8; color: #c81e1e; }
.b2b-badge.pending { background: #fef3c7; color: #d97706; }
.b2b-badge.approved, .b2b-badge.active { background: #d1fae5; color: #059669; }
.b2b-badge.declined, .b2b-badge.rejected { background: #fee2e2; color: #dc2626; }
.b2b-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.b2b-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 15px; }
.b2b-portal-card {
    background: #ffffff;
    border: 1px solid #e3e8ee;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.con-status { font-weight: 600; margin: 10px 0; font-size: 14px; }
.con-status.active { color: #059669; }
.con-status.disconnected { color: #dc2626; }
@media (max-width: 600px) {
    .b2b-grid-2, .b2b-grid-4 { grid-template-columns: 1fr; }
}
