.bic-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bic-container h2 {
    font-size: 24px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.bic-form-group {
    margin-bottom: 15px;
}

.bic-form-group label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
    font-weight: bold;
}

.bic-dropdown {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.bic-dropdown:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.bic-dropdown:disabled {
    background-color: #eee;
    cursor: not-allowed;
}

.bic-result-table {
    margin-top: 20px;
}

.bic-result-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.bic-result-table th,
.bic-result-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.bic-result-table th {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.bic-result-table td {
    color: #333;
}

.bic-result-table tr:last-child td {
    border-bottom: none;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .bic-container {
        max-width: 100%;
        padding: 15px;
    }

    .bic-dropdown {
        font-size: 14px;
    }

    .bic-result-table th,
    .bic-result-table td {
        font-size: 12px;
        padding: 8px;
    }
}