/* Smart Statement Styles */
.smart-statement-container{
    padding-top: 48px;
    padding-bottom: 55px;
}
/* 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: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.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: center;
    margin: 0;
    font-weight: 700;
}

.statement-info-right {
    flex: 1;
}

.bank-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bank-logo {
    width: 60px;
    height: max-content;
    background: #ffd700;
    border-radius: 10px;
    padding: 8px;
    flex: 1;
}

.bank-info {
    flex: 5;
}

.bank-info p {
    margin: 0 0 5px 0;
    font-size: 11px;
    color: #333;
    display: flex;
    gap: 5px;
    align-items: center;
}

.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;
    justify-content: center;
}

.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;
    box-shadow: 0 4px 12px 0 rgba(107, 123, 168, .25);
}
.statement-history-table{
    border-radius: 10px;
    background: #fff;
    padding: 15px;
}
.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-select {
    background: #F8F8FA;
    border: none;
    border-radius: 8px;
    color: #5E6D8A;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 40px 10px 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235E6D8A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    min-width: 120px;
    transition: all 0.3s;
}

.date-select:hover {
    border-color: #C0C0C0;
}

.date-select:focus {
    outline: none;
    border-color: #5E6D8A;
    box-shadow: 0 0 0 2px rgba(94, 109, 138, 0.1);
}

/* Date Range Row */
.date-range-row {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    flex: 1;
}

.date-input-group label {
    color: #6c7ba8;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    width: 100%;
}

.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: #6c7ba8 !important;
    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 Cards (Mobile-friendly card layout) */
.statement-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.statement-card {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.statement-card-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.statement-card-row:last-child {
    margin-bottom: 0;
}

.statement-card-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.statement-label {
    color: #888888;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.statement-value {
    color: #4a5f8f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.statement-value.date-value {
    color: #4a5f8f;
    font-weight: 700;
}

.statement-value.loss-value {
    color: #e74c3c;
    font-weight: 700;
}

.statement-value.status-value {
    font-weight: 600;
}

.statement-value.status-debt {
    color: #e74c3c;
    text-decoration: underline;
}

.statement-value.status-settled {
    color: #27ae60;
    text-decoration: underline;
}
/* ========== Wallet Interest Dashboard ========== */
.wallet-interest-section {
    padding: 20px;
    padding-top: 60px;
}

.wallet-interest-card {
    border-radius: 15px;
}

.wallet-interest-tabs {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 0;
    border-bottom: none;
}

.wallet-interest-tabs .nav-item {
    flex: 1;
    min-width: 0;
}

.wallet-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    background: #fff;
    border: 1px solid #ffc299 !important;
    border-radius: 10px !important;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
    flex-direction: column;
    height: 91px;
    box-shadow: 0px 3px 0px 0px #ff8633;
}

.wallet-tab i {
    font-size: 32px;
    color: #ff8633;
}

.wallet-tab:hover {
    background: #fff7f0;
    color: #000;
}

.wallet-tab:hover i {
    color: #ff8633;
}

.wallet-tab.active,
.wallet-tab:focus {
    background: linear-gradient(to top, #ffa466 5%, #ffc299) !important;
    color: #000 !important;
    border: 1px solid #ffc299 !important;
    box-shadow: 0px 3px 0px 0px #ff8633 !important;
    outline: none;
}

.wallet-tab.active i,
.wallet-tab:focus i {
    color: #fff;
}

.wallet-interest-content {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

/* 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: 10px 20px;
    margin-bottom: 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.earnings-estimator-title {
    color: #6C7BA8;
    font-size: 18px;
    font-weight: 700;
    padding: 9px 0;
    border-bottom: 1px solid #BECAEC;
}

.earnings-estimator-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 9px;
}

.payout-countdown {
    text-align: center;
    flex-shrink: 0;
    padding: 5px 20px;
    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: 22px;
    font-weight: 700;
}

.countdown-sub {
    display: block;
    color: #6C7BA8;
    font-size: 16px;
    margin-top: 4px;
}

.estimated-earning {
    text-align: center;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}

.est-label {
    display: block;
    color: #6C7BA8;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.est-amount {
    display: block;
    color: #ff8633;
    font-size: 22px;
    font-weight: 700;
}

.est-apy {
    display: block;
    color: #6C7BA8;
    font-size: 16px;
    margin-top: 4px;
}

.wallet-stats-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.wallet-stat-card {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 21px 25px;
    text-align: center;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.wallet-stat-label {
    color: #7682a5;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.wallet-stat-amount {
    color: #000;
    font-size: 31px;
    font-weight: 700;
    margin: 0;
}

.wallet-stat-change {
    color: #ff8633;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

.wallet-stat-note {
    color: #ff8633;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.wallet-stat-card-interest {
    text-align: left;
    padding: 36px 44px;
}

.interest-progress-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.interest-donut {
    width: 68px;
    height: 68px;
    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: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #ff8633;
}

.interest-stat-text .wallet-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #7682a5;
    margin: 0;
}

.interest-stat-text .wallet-stat-amount {
    font-size: 23px;
    font-weight: 700;
    color: #000;
    margin: 3px 0 0 0;
}

/* ========== Mobile List Card (Statement / FD Interest) ========== */
.wi-list-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
}

.wi-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px 6px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.wi-list-row:last-child {
    border-bottom: none;
}

.wi-list-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wi-list-date {
    font-size: 13px;
    color: #7682a5;
    font-weight: 400;
    line-height: normal;
}

.wi-list-subject {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 1.9;
}

.wi-list-amount {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    text-align: right;
    white-space: nowrap;
}

/* FD Deposit card list */
.wi-fd-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.wi-fd-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wi-fd-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wi-fd-amt-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wi-fd-currency {
    font-size: 17px;
    font-weight: 400;
    color: #111827;
}

.wi-fd-value {
    font-size: 30px;
    font-weight: 700;
    color: #22c55e;
}

.wi-fd-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 72px;
}

.wi-fd-status {
    font-size: 18px;
    font-weight: 700;
    color: #22c55e;
    text-align: right;
}

.wi-fd-status-cancelled {
    color: #e74c3c;
    font-size: 17px;
}

.wi-fd-timeline {
    font-size: 13px;
    font-weight: 400;
    color: #7682a5;
    text-align: right;
}

.wi-fd-cancelled-label {
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #e74c3c;
    text-align: center;
}

/* ========== 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;
}

/* Balance card – 265px, gradient L→R #ffa466 → #ff8633, white glow shadow */
.wi-balance-card {
    flex: auto;
    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 {
    flex: auto;
    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: 20px;
    padding: 0 20px;
    background: #f0f0f0;
    border: 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: 20px;
    padding: 0 20px;
    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 0;
    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 0;
}

.wi-col-amount {
    width: 150px;
    flex-shrink: 0;
    height: 45px;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

/* 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;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* FD header uses same flex layout, no gap (borders handle spacing) */
.wi-table-fd .wi-table-header {
    gap: 0;
    padding: 0;
}

.wi-table-fd .wi-table-header .wi-th {
    padding: 10px 20px;
}

/* FD rows: no gap, borders on cells */
.wi-table-fd .wi-table-row {
    gap: 0;
    padding: 0;
}

/* 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 / Forfeit button – orange border, rounded 8px */
.wi-btn-withdraw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    width: 92px;
    background: transparent;
    border: 1px solid #ff8633;
    border-radius: 8px;
    color: #ff8633;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.wi-btn-withdraw:hover {
    background: #ff8633;
    color: #fff;
}
/* ========== 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 13px;
    background: #ffa466;
    border-radius: 10px 10px 0 0;
}

.wi-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    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: 21px;
    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 16px;
}

/* 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: 12px;
    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: 11px;
    font-weight: 400;
    color: #414755;
    margin: 0;
}

/* Package Details box */
.wi-modal-details {
    background: #f7f7f7;
    border-radius: 5px;
    padding: 15px;
    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: 13px;
    font-weight: 400;
    color: #666;
}

/* Footer buttons */
.wi-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 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: center;
    gap: 14px;
    background: #e74544;
    border-radius: 5px;
    padding: 13px 21px;
}

.wi-modal-warning i {
    font-size: 31px;
    color: #ffd700;
    flex-shrink: 0;
}

.wi-modal-warning p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    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;
}