
/* Bank Information Page Styles */

/* Reuse similar hero styles for consistency */
.bank-hero {
    background-color: #003366;
    background-image: linear-gradient(135deg, rgba(0,51,102,0.95) 0%, rgba(0,86,179,0.85) 100%), url('../images/bank-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin-bottom: 0;
    position: relative;
}

.bank-hero.mh {
    margin-top: 120px;
}

.bank-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bank-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Bank Content Container */
.bank-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    background: #f9f9f9;
}

.bank-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
}

.bank-header {
    background: #007bff;
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bank-header .icon-bank {
    font-size: 1.6rem;
}

.bank-type-badge {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.bank-details {
    padding: 30px;
}

.detail-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    width: 35%;
    font-weight: 600;
    color: #555;
    font-size: 1rem;
    padding-right: 15px;
}

.detail-value {
    width: 65%;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    word-break: break-word;
}

.detail-value .highlight {
    color: #007bff;
    font-weight: 600;
}

.detail-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

/* Copy Button */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    padding: 4px 8px;
    background: #f0f4f8;
    border: 1px solid #dceefc;
    border-radius: 4px;
    color: #007bff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    vertical-align: middle;
}

.copy-btn:hover {
    background: #e1f0fa;
    color: #0056b3;
}

.copy-btn:active {
    transform: translateY(1px);
}

/* Print/Action Area */
.bank-actions {
    text-align: center;
    margin-top: 40px;
}

.action-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0 10px;
}

.action-btn:hover {
    background: #007bff;
    color: white;
}

.action-btn.primary {
    background: #007bff;
    color: white;
}

.action-btn.primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Important Note Box */
.important-note {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .detail-row {
        flex-direction: column;
        padding: 15px 0;
    }
    
    .detail-label {
        width: 100%;
        margin-bottom: 8px;
        color: #777;
        font-size: 0.9rem;
    }
    
    .detail-value {
        width: 100%;
        font-size: 1.05rem;
    }
    
    .bank-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .bank-type-badge {
        align-self: flex-start;
    }
}
