/* Fichier : css/interbancaire.css */

#interbancaire-form {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 20px auto;
    border-top: 4px solid #0056b3; /* Bleu Roi */
}

/* On réutilise les styles .form-row de repo.css ou mad.css s'ils sont chargés */
/* Juste une spécificité pour le focus */
#interbancaire-form input:focus, 
#interbancaire-form select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

#interbancaire-btn {
    background-color: #0056b3;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

#interbancaire-btn:hover {
    background-color: #004494;
}

/* Bloc d'info (Limite / Expo) - Style jaune identique à Repo/Reverse */
#interbancaire-view .info-block {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #856404;
    display: flex;
    justify-content: space-between;
}
