/* Bank Dropdown Styles */
.bank-dropdown-container {
    margin-bottom: 15px;
}

.bank-dropdown {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M6 8L2 4h8z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.bank-dropdown:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

.bank-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.bank-logo-display {
    width: 40px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    display: none;
    flex-shrink: 0;
}

/* Static bank logo styling */
#static-bank-logo {
    width: 40px;
    height: 30px;
    object-fit: contain;
    border-radius: 3px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.bank-dropdown-label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

/* Custom dropdown with logos */
.bank-dropdown-custom {
    position: relative;
    width: 100%;
}

.bank-dropdown-custom select {
    width: 100%;
    padding: 10px 40px 10px 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.bank-dropdown-custom::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
    z-index: 2;
}

/* Safari iOS compatibility for dropdowns */
@supports (-webkit-touch-callout: none) {
    .bank-dropdown {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    .bank-dropdown-custom select {
        font-size: 16px !important;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
}
