.rba-bank-details {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.rba-bank-details h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 22px;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 10px;
}

.rba-detail-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.rba-bic-row {
    opacity: 0.7;
    font-size: 0.95em;
}

.rba-bic-row .rba-detail-label {
    color: #777;
}

.rba-bic-text {
    color: #666 !important;
}

.rba-detail-label {
    font-weight: 600;
    color: #555;
    padding-top: 8px;
}

.rba-detail-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.rba-currency-prefix {
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

.rba-value-text {
    flex: 1;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    word-break: break-all;
}

.rba-clickable-copy {
    cursor: pointer;
    transition: color 0.2s;
}

.rba-clickable-copy:hover {
    color: #2271b1;
}

.rba-amount {
    font-weight: 700;
    font-size: 18px;
    color: #2271b1;
}

.rba-copy-btn {
    background: #f0f0f0;
    color: #555;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s;
}

.rba-copy-btn:hover {
    background: #e0e0e0;
    border-color: #999;
    color: #333;
}

.rba-copy-btn:active {
    background: #d0d0d0;
    transform: scale(0.98);
}

.rba-copy-btn.copied {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #81c784;
}

.rba-copy-all {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.rba-copy-all-btn {
    background: #e5e5e5;
    color: #666;
    border: 1px solid #bbb;
    padding: 11px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s;
}

.rba-copy-all-btn:hover {
    background: #d8d8d8;
    border-color: #999;
    color: #444;
}

.rba-copy-all-btn:active {
    background: #ccc;
    transform: scale(0.98);
}

.rba-copy-all-btn.copied {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #81c784;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .rba-bank-details {
        padding: 20px;
    }
    
    .rba-detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .rba-detail-label {
        padding-top: 0;
        font-size: 14px;
    }
    
    .rba-detail-value {
        flex-direction: column;
        align-items: stretch;
    }
    
    .rba-copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .rba-value-text {
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .rba-copy-btn,
    .rba-copy-all {
        display: none;
    }
    
    .rba-bank-details {
        border: 1px solid #000;
    }
}
