/*.bank-accounts-section {
    padding: 2rem;
    background-color: #f9f9f9;
}

    .bank-accounts-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #0C2A5A;
    }

.bank-account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

    .bank-account-item:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.bank-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bank-icon {
    font-size: 2rem;
    color: #0C2A5A;
}

.copy-button {
    background: #0C2A5A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .copy-button:hover {
        background-color: #0C2A5A;
    }

    .copy-button i {
        margin-right: 0.5rem;
    }
*/

.bank-accounts-section {
    padding: 2rem;
    background-color: #f9f9f9;
}

    .bank-accounts-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #0C2A5A;
    }

.bank-account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

    .bank-account-item:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

.bank-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
}

.bank-icon {
    font-size: 2rem;
    color: #0C2A5A;
}

.copy-button {
    background: #0C2A5A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 0.5rem; /* Adds margin for better spacing on smaller screens */
}

    .copy-button:hover {
        background-color: #0C2A5A;
    }

    .copy-button i {
        margin-right: 0.5rem;
    }

/* Media Queries for responsive behavior */
@media (max-width: 768px) {
    .bank-account-item {
        flex-direction: column;
        text-align: center;
    }

    .bank-info {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .copy-button {
        width: 100%; /* Full width on smaller screens */
    }
}
.styled-select {
    background: #fff;
    border: 2px solid #0C2A5A;
    border-radius: 12px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #0C2A5A;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.styled-select:focus {
    border-color: #1363DF;
    box-shadow: 0 0 0 0.25rem rgba(19, 99, 223, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #0C2A5A;
    font-size: 1.05rem;
}

option {
    font-weight: 500;
}
