/* Smart Statement Styles */

/* Settlement Warning Banner */
.settlement-warning-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #e74544;
    color: #fff;
    padding: 8px 20px;
    margin-bottom: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.settlement-warning-banner i {
    font-size: 20px;
    color: #ffd700;
}

.warning-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.warning-title {
    font-weight: 600;
    font-size: 14px;
}

.warning-subtitle {
    font-size: 11px;
    opacity: 0.9;
}

/* Statement Info Box */
.statement-info-box {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ffa161;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.statement-info-left {
    flex: 0 0 40%;
}

.outstanding-box {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 15px 20px;
    text-align: center;
    margin-bottom: 15px;
}

.outstanding-label {
    color: #7b7b7b;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 700;
}

.outstanding-amount {
    color: #ffa161;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.transfer-note {
    color: #6d7aa3;
    font-size: 13px;
    text-align: left;
    margin: 0;
    font-weight: 700;
}

.statement-info-right {
    flex: 1;
}

.bank-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.bank-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #ffd700;
    border-radius: 10px;
    padding: 8px;
}

.bank-info {
    flex: 1;
}

.bank-info p {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #333;
    display: flex;
    gap: 5px;
}

.bank-info p span:first-child {
    color: #4f4f4f;
    min-width: 100px;
}

.copy-btn {
    background: linear-gradient(180deg, #ffc299 0%, #ffa466 100%);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 164, 102, 0.4);
}

.bank-warning {
    color: #4f4f4f;
    font-size: 12px;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bank-warning i {
    color: #ff9800;
}

/* Transfer Complete Button */
.transfer-btn-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.transfer-complete-btn {
    background: linear-gradient(180deg, #ffc299 0%, #ffa466 100%);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 164, 102, 0.3);
}

.transfer-complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 164, 102, 0.5);
}

/* Statement History Section */
.statement-history-section {
    padding: 15px;
}

.statement-history-table {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
}

.history-title {
    color: #414755;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 15px;
}

/* Date Filter Row */
.date-filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.date-label {
    color: #6c7ba8;
    font-weight: 700;
    font-size: 14px;
    min-width: 60px;
}

.date-colon {
    color: #333;
}

.date-tabs {
    display: flex;
    gap: 10px;
}

.date-tab {
    background: transparent;
    border: none;
    color: #888888;
    font-size: 13px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 700;
}

.date-tab:hover {
    color: #ff8633;
}

.date-tab.active {
    color: #6c7ba8;
    font-weight: 700;
}

.date-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff8633;
}

/* Date Range Row */
.date-range-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input-group label {
    color: #6c7ba8;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.date-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    font-size: 13px;
    color: #333;
    width: 120px;
    border: none;
    font-weight: 700;
}

.date-input-wrap i {
    position: absolute;
    right: 10px;
    color: #6c7ba8;
    font-size: 14px;
}

.search-btn {
    background: linear-gradient(180deg, #ffc299 0%, #ffa466 100%);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    margin-left: auto;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(74, 137, 252, 0.4);
}

/* Statement Grid (div-based, no table) */
.statement-table-wrap {
    overflow-x: auto;
}

.statement-grid-header,
.statement-grid-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 0.8fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.statement-grid-header {
    /* background: #fff; */
    color: #888888;
    font-size: 13px;
    font-weight: 600;
}

.statement-grid-header .statement-grid-cell {
    padding: 12px 10px;
}

.statement-grid-body {
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.statement-grid-row {
    font-size: 13px;
    color: #4a5f8f;
}

.statement-grid-row .statement-grid-cell {
    padding: 14px 10px;
    font-weight: 600;
}

.statement-grid-row:last-child .statement-grid-cell {
    border-bottom: none;
}

.statement-grid-row:hover {
    background: #e8e8e8;
}

.statement-grid-cell.date-cell {
    color: #4a5f8f;
    font-weight: 600;
}

.statement-grid-cell.loss {
    color: #e74c3c;
    font-weight: 600;
}

.statement-grid-cell.status-debt {
    color: #e74c3c;
    font-weight: 500;
    text-decoration: underline;
}

.statement-grid-cell.status-settled {
    color: #27ae60;
    font-weight: 600;
    text-decoration: underline;
}

/* ========== Wallet Interest Dashboard ========== */
.wallet-interest-section {
    padding: 15px;
}

.wallet-interest-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
}

.wallet-interest-tabs {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

.wallet-tab {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 10px 10px 0px 0px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.wallet-tab i {
    font-size: 35px;
    color: #ff8633;
}

.wallet-tab:hover {
    background: #e8e8e8;
    color: #000;
}

.wallet-tab:hover i {
    color: #ff8633;
}

.wallet-tab.active {
    background: #ffb073;
    color: #000;
    border-bottom: 3px solid #e67a33;
}

.wallet-tab.active i {
    color: #fff;
}

.wallet-interest-content {
    padding: 20px;
    border: 1px solid #ffa161;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Statement view: full-width banner inside wallet card */
.wallet-interest-content > .settlement-warning-banner {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    box-sizing: border-box;
}

.earnings-estimator-card {
    background: #fff;
    border: 1px solid #BECAEC;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 3px 6px 0px #c2c2c2;
}

.earnings-estimator-title {
    color: #6C7BA8;
    font-size: 16px;
    font-weight: 600;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #BECAEC;
}

.earnings-estimator-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.payout-countdown {
    text-align: center;
    flex: 1;
    min-width: 140px;
    border-right: 1px solid #BECAEC;
}

.countdown-value {
    display: block;
    color: #ff8633;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.countdown-label {
    display: block;
    color: #ff8633;
    font-size: 20px;
    font-weight: 700;
}

.countdown-sub {
    display: block;
    color: #6C7BA8;
    font-size: 13px;
    margin-top: 4px;
}

.estimated-earning {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.est-label {
    display: block;
    color: #6C7BA8;
    font-size: 13px;
    margin-bottom: 4px;
}

.est-amount {
    display: block;
    color: #ff8633;
    font-size: 28px;
    font-weight: 700;
}

.est-apy {
    display: block;
    color: #6C7BA8;
    font-size: 12px;
    margin-top: 4px;
}

.wallet-stats-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.wallet-stat-card {
    flex: 1;
    min-width: 200px;
    background: #fff;
    border: 1px solid #BECAEC;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 3px 6px 0px #c2c2c2;
}

.wallet-stat-label {
    color: #6C7BA8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.wallet-stat-amount {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.wallet-stat-change {
    color: #ff8633;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.wallet-stat-note {
    color: #ff8633;
    font-size: 11px;
    margin: 0;
}

.wallet-stat-card-interest {
    text-align: left;
}

.interest-progress-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.interest-donut {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#ff8633 0% 75%, #f0f0f0 75% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interest-donut-value {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ff8633;
}

.interest-stat-text .wallet-stat-amount {
    font-size: 22px;
    margin: 4px 0 0 0;
}

/* ========== Wallet Interest Statement (Figma 2010:1986 – 1:1 clone) ========== */

/* Balance row: card + topup side by side */
.wi-balance-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 20px;
}

/* Balance card – 265px, gradient L→R #ffa466 → #ff8633, white glow shadow */
.wi-balance-card {
    width: 265px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #ffa466 5%, #ff8633 100%);
    border-radius: 10px;
    padding: 20px 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.wi-balance-label {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: normal;
}

.wi-balance-label strong {
    font-weight: 700;
}

.wi-balance-amount {
    font-size: 44px;
    font-weight: 700;
    margin: 0;
    line-height: normal;
}

/* Topup card – 120px wide, full height, gradient T→B white → #fff0e6, orange border */
.wi-topup-card {
    width: 120px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 19px;
    background: linear-gradient(180deg, #ffffff 0%, #fff0e6 100%);
    border: 1px solid #ff8633;
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    text-decoration: none;
    color: #ff8633;
    text-align: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.wi-topup-card:hover {
    color: #ff8633;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
}

.wi-topup-card i {
    font-size: 44px;
    color: #ff8633;
}

.wi-topup-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ff8633;
}

.wi-topup-text strong {
    font-weight: 700;
}

/* Transaction table – border #ddd, shadow, no border-radius (sharp inside card) */
.wi-table {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
    width: 100%;
}

/* Table header – bg #f0f0f0, border #ddd */
.wi-table-header {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* Table rows */
.wi-table-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
}

.wi-table-row:last-child {
    border-bottom: none;
}

/* Column sizing: Date/Time 150px, Subject flex, Amount 150px */
.wi-col-date {
    width: 150px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    box-sizing: content-box;
}

.wi-col-subject {
    flex: 1;
    min-width: 0;
    border-right: 1px solid #ddd;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.wi-col-amount {
    width: 150px;
    flex-shrink: 0;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

/* Header cell text */
.wi-th {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

/* Data row: right borders use #e0e0e0 */
.wi-table-row .wi-col-date {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.wi-table-row .wi-col-subject {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #6c7ba8;
}

.wi-table-row .wi-col-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
}

/* ========== FD Deposit Table (Figma 2010:2108) ========== */

/* FD table column sizing */
.wi-fd-col-date {
    width: 150px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.wi-fd-col-amount {
    flex: 1;
    min-width: 0;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.wi-fd-col-timeline {
    width: 130px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.wi-fd-col-status {
    width: 130px;
    flex-shrink: 0;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.wi-fd-col-action {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

/* FD header cell padding override (shorter than data cells) */
.wi-table-fd .wi-table-header .wi-th {
    padding: 10px 20px;
}

/* FD row data cell borders use #e0e0e0 */
.wi-table-fd .wi-table-row .wi-fd-col-date {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.wi-table-fd .wi-table-row .wi-fd-col-amount {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #22c55e;
}

.wi-table-fd .wi-table-row .wi-fd-col-timeline {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #7682a5;
}

.wi-table-fd .wi-table-row .wi-fd-col-status {
    border-right-color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #22c55e;
}

/* Withdraw button – orange border, rounded 8px */
.wi-btn-withdraw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    background: transparent;
    border: 1px solid #ff8633;
    border-radius: 8px;
    color: #ff8633;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.wi-btn-withdraw:hover {
    background: #ff8633;
    color: #fff;
}

/* Status colors */
.wi-status-active {
    color: #22c55e;
    font-weight: 700;
}

.wi-status-cancelled {
    color: #e74c3c;
    font-weight: 700;
}

/* Cancelled action text (no button) */
.wi-action-cancelled {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: #e74c3c;
}

.wi-td,.wi-th,.wi-table-fd{
    height: 100%;
}

/* ========== FD Package Modal (Figma 2007:406 – Bootstrap) ========== */

/* Override Bootstrap modal-content via .wi-modal */
.wi-modal {
    background: #fff;
    border-radius: 10px;
    border: none;
    overflow: hidden;
}

/* Header – orange bar */
.wi-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: #ffa466;
    border-radius: 10px 10px 0 0;
}

.wi-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.wi-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: #464646;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.wi-modal-close:hover {
    color: #fff;
}

/* Body */
.wi-modal-body {
    display: flex;
    flex-direction: column;
    gap: 21px;
    padding: 10px 25px;
}

/* Field group (label + input + hint) */
.wi-modal-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wi-modal-label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #6c7ba8;
}

.wi-modal-select-wrap {
    position: relative;
}

.wi-modal-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #becaec;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #414755;
    background: #fff;
    appearance: auto;
    cursor: pointer;
    outline: none;
}

.wi-modal-select:focus {
    border-color: #ff8633;
}

.wi-modal-input {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #becaec;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #414755;
    outline: none;
    box-sizing: border-box;
}

.wi-modal-input::placeholder {
    color: #999;
}

.wi-modal-input:focus {
    border-color: #ff8633;
}

.wi-modal-hint {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #414755;
    margin: 0;
}

/* Package Details box */
.wi-modal-details {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.wi-modal-details-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    margin: 0;
}

.wi-modal-details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wi-modal-details-item {
    display: flex;
    align-items: center;
    gap: 7px;
}

.wi-modal-details-key {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

.wi-modal-details-val {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

/* Footer buttons */
.wi-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px 20px;
}

.wi-modal-btn-cancel {
    height: 45px;
    padding: 11px 27px;
    border: 1px solid #ff8633;
    border-radius: 30px;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ff8633;
    cursor: pointer;
    transition: all 0.3s;
}

.wi-modal-btn-cancel:hover {
    background: #ff8633;
    color: #fff;
}

.wi-modal-btn-submit {
    padding: 11px 27px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffc299 0%, #ffa466 95%);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.wi-modal-btn-submit:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Forfeit modal – warning banner */
.wi-modal-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #e74544;
    border-radius: 5px;
    padding: 15px 25px;
}

.wi-modal-warning i {
    font-size: 32px;
    color: #ffd700;
    flex-shrink: 0;
}

.wi-modal-warning p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Readonly field (non-editable display) */
.wi-modal-readonly {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #becaec;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #414755;
    background: #fff;
    box-sizing: border-box;
}

/* Red warning text */
.wi-modal-warning-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e74c3c;
    margin: 0;
    line-height: 1.5;
}