.bank-accounts-page-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.page-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.bank-account-card-page {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.bank-account-card-page:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.bank-icon-wrapper-page {
    width: 110px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.bank-account-name-page {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
}

.bank-account-details-page {
    margin-top: 1.5rem;
}

.account-detail-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.detail-label-page {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.detail-label-page i {
    color: var(--primary-color, #dc3545);
}

.detail-value-page {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.account-number-page {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.iban-section-page {
    margin-bottom: 1rem;
}

.iban-copy-wrapper-page {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.iban-display-text-page {
    flex: 1;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
}

.iban-copy-btn-page {
    background: var(--primary-color, #dc3545);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.iban-copy-btn-page:hover {
    background: var(--secondary-color, #c82333);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.iban-copy-btn-page:active {
    transform: translateY(0);
}

.iban-copy-btn-page.copied {
    background: #28a745;
}

.iban-copy-btn-page.copied:hover {
    background: #218838;
}

.copy-text-page {
    font-size: 0.85rem;
}

.currency-badge-page {
    display: inline-block;
    padding: 6px 12px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.currency-badge-page.currency-usd {
    background: #e8f5e9;
    color: #2e7d32;
}

.currency-badge-page.currency-eur {
    background: #fff3e0;
    color: #f57c00;
}

@media (max-width: 768px) {
    .bank-accounts-page-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .iban-copy-wrapper-page {
        flex-direction: column;
        align-items: stretch;
    }
    
    .iban-copy-btn-page {
        width: 100%;
        justify-content: center;
    }
}

