.abpt-bank-details-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    clear: both;
}

.abpt-bank-details-heading {
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.abpt-account-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.abpt-account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.abpt-grid-item {
    display: flex;
    flex-direction: column;
}

.abpt-field-label {
    font-weight: bold;
    font-size: 0.85em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 6px;
}

.abpt-field-value {
    font-size: 1.1em;
    color: #333;
    word-break: break-all;
    font-weight: 500;
}

#abpt-upload-section {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

#abpt-upload-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .abpt-account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .abpt-account-grid {
        grid-template-columns: 1fr;
    }
    
    .abpt-bank-details-wrapper {
        padding: 15px;
    }
    
    .abpt-account-section {
        padding: 15px;
    }
}
